discourse/plugins/discourse-narrative-bot/autoload/jobs/narrative_init.rb
Sam f3549291a3 DEV: use unicorn in development
This commit also cleans up a bunch of pointless noise each time we boot app

- narrative was loading i18n cause redefinition of consts
- discourse.rb was loaded twice as was auth
- bin/unicorn now does all the smart things and boots unicron in dev
- bin/rails s will boot unicorn with no params
- remove bin/puma which only causes confusion
2018-08-07 17:13:47 +10:00

16 lines
333 B
Ruby

require_dependency 'user'
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