2018-09-29 18:34:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-09-15 04:24:30 -04:00
|
|
|
module Backup
|
2020-09-28 02:09:56 -04:00
|
|
|
class Builds < Backup::Files
|
2018-05-24 10:58:25 -04:00
|
|
|
def initialize(progress)
|
2022-03-14 23:08:45 -04:00
|
|
|
super(progress, 'builds', Settings.gitlab_ci.builds_path)
|
2015-10-16 11:16:17 -04:00
|
|
|
end
|
2022-02-15 22:18:24 -05:00
|
|
|
|
2022-03-14 23:08:45 -04:00
|
|
|
override :human_name
|
2022-02-15 22:18:24 -05:00
|
|
|
def human_name
|
|
|
|
_('builds')
|
|
|
|
end
|
2015-09-15 04:24:30 -04:00
|
|
|
end
|
|
|
|
end
|