Method: Avatarable#upload_paths

Defined in:
app/models/concerns/avatarable.rb

#upload_paths(identifier) ⇒ Object

Path that is persisted in the tracking Upload model. Used to fetch the upload from the model.



103
104
105
# File 'app/models/concerns/avatarable.rb', line 103

def upload_paths(identifier)
  avatar_mounter.blank_uploader.store_dirs.map { |store, path| File.join(path, identifier) }
end