fix
This commit is contained in:
parent
65af40c29b
commit
fa0021b504
|
@ -0,0 +1,12 @@
|
|||
class SendTemplateMessageJob < ApplicationJob
|
||||
queue_as :default
|
||||
|
||||
def perform(source, *args)
|
||||
Rails.logger.info "SendTemplateMessageJob [args] #{args}"
|
||||
case source
|
||||
when 'FollowTip'
|
||||
receivers, followeder = args
|
||||
Rails.logger.info "#{receivers} #{followeder}"
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue