user_name_change_requests.rb: remove unused notify_admins callback.

This commit is contained in:
evazion
2017-02-23 20:21:56 -06:00
parent 865211b0b5
commit 0c4b687880

View File

@@ -8,7 +8,6 @@ class UserNameChangeRequest < ActiveRecord::Base
validates_length_of :desired_name, :within => 2..100, :on => :create
validates_format_of :desired_name, :with => /\A[^\s:]+\Z/, :on => :create, :message => "cannot have whitespace or colons"
before_validation :normalize_name
# after_create :notify_admins
attr_accessible :status, :user_id, :original_name, :desired_name, :change_reason, :rejection_reason, :approver_id
def self.pending
@@ -49,14 +48,6 @@ class UserNameChangeRequest < ActiveRecord::Base
UserFeedback.for_user(user_id).order("id desc")
end
def notify_admins
title = "#{original_name} is requesting a name change to #{desired_name}"
body = title + "\n\n\"See request\":/user_name_change_requests/#{id}"
User.admins.find_each do |user|
Dmail.create_split(:title => title, :body => body, :to_id => user.id)
end
end
def approve!
update_attributes(:status => "approved", :approver_id => CurrentUser.user.id)
user.update_attribute(:name, desired_name)