10 lines
204 B
Ruby
10 lines
204 B
Ruby
module Users
|
|
class BustCacheWorker < BustCacheBaseWorker
|
|
def perform(user_id)
|
|
user = User.find_by(id: user_id)
|
|
return unless user
|
|
|
|
EdgeCache::BustUser.call(user)
|
|
end
|
|
end
|
|
end
|