mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 18:58:34 +08:00
12 lines
272 B
Ruby
12 lines
272 B
Ruby
|
module Jobs
|
||
|
class NarrativeTimeout < Jobs::Base
|
||
|
def execute(args)
|
||
|
if user = User.find_by(id: args[:user_id])
|
||
|
I18n.with_locale(user.effective_locale) do
|
||
|
args[:klass].constantize.new.notify_timeout(user)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|