DEV: remove user_profile events added for akismet (#7044)

This commit is contained in:
Saurabh Patel 2019-03-12 22:21:09 +05:30 committed by Régis Hanol
parent 154f503d2e
commit a901527057
1 changed files with 0 additions and 10 deletions

View File

@ -8,8 +8,6 @@ class UserProfile < ActiveRecord::Base
validates :user, presence: true
before_save :cook
after_save :trigger_badges
after_commit :trigger_profile_created_event, on: :create
after_commit :trigger_profile_updated_event, on: :update
validates :profile_background, upload_url: true, if: :profile_background_changed?
validates :card_background, upload_url: true, if: :card_background_changed?
@ -108,14 +106,6 @@ class UserProfile < ActiveRecord::Base
tempfile.close! if tempfile && tempfile.respond_to?(:close!)
end
def trigger_profile_created_event
DiscourseEvent.trigger(:user_profile_created, self)
end
def trigger_profile_updated_event
DiscourseEvent.trigger(:user_profile_updated, self)
end
protected
def trigger_badges