summaryrefslogtreecommitdiff
path: root/lib/backup/builds.rb
blob: 5e795a449def9c9a7aaf73c54f588030960cbf0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'backup/files'

module Backup
  class Builds < Files
    attr_reader :progress

    def initialize(progress)
      @progress = progress

      super('builds', Settings.gitlab_ci.builds_path)
    end
  end
end