1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-03 14:19:41 +00:00

fix MailHandler#assign_string_attribute_with_limit is not private

git-svn-id: http://svn.redmine.org/redmine/trunk@18697 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2019-10-17 04:15:16 +00:00
parent e8b06af277
commit 69fb5a6a80

View File

@ -540,6 +540,7 @@ class MailHandler < ActionMailer::Base
value = value.to_s.slice(0, limit)
object.send("#{attribute}=", value)
end
private_class_method :assign_string_attribute_with_limit
# Returns a User from an email address and a full name
def self.new_user_from_attributes(email_address, fullname=nil)