10 lines
201 B
Ruby
10 lines
201 B
Ruby
module Users
|
|
class BustCacheWorker < BustCacheBaseWorker
|
|
def perform(user_id)
|
|
user = User.find_by(id: user_id)
|
|
return unless user
|
|
|
|
CacheBuster.bust_user(user)
|
|
end
|
|
end
|
|
end
|