This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
Gitlink
/
forgeplus
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
16
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
fix
tags/v3.2.0
yystopf
4 years ago
parent
65af40c29b
commit
fa0021b504
1 changed files
with
12 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+12
-0
app/jobs/send_template_message_job.rb
+ 12
- 0
app/jobs/send_template_message_job.rb
View File
@@ -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
Write
Preview
Loading…
Cancel
Save