mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-21 10:36:04 +10:00
18 lines
335 B
Ruby
18 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
|