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

file_store_mounter.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d4463e52976c151047a527c6d13b9b8d97b1d3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module FileStoreMounter
  extend ActiveSupport::Concern

  class_methods do
    def mount_file_store_uploader(uploader)
      mount_uploader(:file, uploader)

      after_save :update_file_store, if: :saved_change_to_file?
    end
  end

  private

  def update_file_store
    # The file.object_store is set during `uploader.store!`
    # which happens after object is inserted/updated
    self.update_column(:file_store, file.object_store)
  end
end