Add webhook account.approved (#22938)

* Webhook `account.approved` when preparing new user

* Update Webhook.EVENTS
This commit is contained in:
Alexander Ivanov 2023-01-05 20:29:49 +08:00 committed by GitHub
parent 17f79082b0
commit 8eb29741b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -489,6 +489,7 @@ class User < ApplicationRecord
BootstrapTimelineWorker.perform_async(account_id) BootstrapTimelineWorker.perform_async(account_id)
ActivityTracker.increment('activity:accounts:local') ActivityTracker.increment('activity:accounts:local')
UserMailer.welcome(self).deliver_later UserMailer.welcome(self).deliver_later
TriggerWebhookWorker.perform_async('account.approved', 'Account', account_id)
end end
def prepare_returning_user! def prepare_returning_user!

View file

@ -15,6 +15,7 @@
class Webhook < ApplicationRecord class Webhook < ApplicationRecord
EVENTS = %w( EVENTS = %w(
account.approved
account.created account.created
report.created report.created
).freeze ).freeze