mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
14 lines
306 B
Ruby
14 lines
306 B
Ruby
module Jobs
|
|
class NarrativeInit < Jobs::Base
|
|
sidekiq_options queue: 'critical'
|
|
|
|
def execute(args)
|
|
if user = User.find_by(id: args[:user_id])
|
|
I18n.with_locale(user.effective_locale) do
|
|
args[:klass].constantize.new.input(:init, user)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|