Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lfs.rb « backup « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4153467fbeeea29b981762f667939aa0440ed5b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'backup/files'

module Backup
  class Lfs < Files
    def initialize
      super('lfs', Settings.lfs.storage_path)
    end

    def create_files_dir
      Dir.mkdir(app_files_dir, 0700)
    end
  end
end