mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06: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
|