mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 20:56:08 +10:00
- Offloads uploading to GitLab Workhorse - Use /authorize request for fast uploading - Added backup recipes for artifacts - Support download acceleration using X-Sendfile
14 lines
230 B
Ruby
14 lines
230 B
Ruby
require 'backup/files'
|
|
|
|
module Backup
|
|
class Artifacts < Files
|
|
def initialize
|
|
super('artifacts', ArtifactUploader.artifacts_path)
|
|
end
|
|
|
|
def create_files_dir
|
|
Dir.mkdir(app_files_dir, 0700)
|
|
end
|
|
end
|
|
end
|