1714883107
This reverts commit01160fc061
, reversing changes made to4bff9daf8b
.
17 lines
335 B
Ruby
17 lines
335 B
Ruby
# encoding: utf-8
|
|
|
|
class AvatarUploader < CarrierWave::Uploader::Base
|
|
include UploaderHelper
|
|
|
|
storage :file
|
|
|
|
after :store, :reset_events_cache
|
|
|
|
def store_dir
|
|
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
|
end
|
|
|
|
def reset_events_cache(file)
|
|
model.reset_events_cache if model.is_a?(User)
|
|
end
|
|
end
|