Actions
Maintenance #1962
closedxmera Omnia - Collection #1826: Maintenance tasks of several components
Maintenance #1739: Support Redmine 5.1.1
Check if user changes will have impact on plugins
Start date:
Due date:
% Done:
100%
Estimated time:
Compatible Redmine Version:
Pull Request Link:
Description
Affected plugins:
- project:xmera-omnia-operations
- Redmine Dashboards
- project:redmine-local-avatars
- Redmine Legal Notes
index 038fe4c80..88e18b8d0 100644
--- a/app/models/user.rb
+++ b/app/models/user.rb
@@ -110,7 +110,8 @@ class User < Principal
# Login must contain letters, numbers, underscores only
validates_format_of :login, :with => /\A[a-z0-9_\-@\.]*\z/i
validates_length_of :login, :maximum => LOGIN_LENGTH_LIMIT
- validates_length_of :firstname, :lastname, :maximum => 30
+ validates_length_of :firstname, :maximum => 30
+ validates_length_of :lastname, :maximum => 255
validates_inclusion_of :mail_notification, :in => MAIL_NOTIFICATION_OPTIONS.collect(&:first), :allow_blank => true
Setting::PASSWORD_CHAR_CLASSES.each do |k, v|
validates_format_of :password, :with => v, :message => :"must_contain_#{k}", :allow_blank => true, :if => Proc.new {Setting.password_required_char_classes.include?(k)}
@@ -235,8 +236,6 @@ class User < Principal
end
user.update_last_login_on! if user && !user.new_record? && user.active?
user
- rescue => text
- raise text
end
# Returns the user who matches the given autologin +key+ or nil
@@ -750,7 +749,7 @@ class User < Principal
roles.any? do |role|
(context.is_public? || role.member?) &&
role.allowed_to?(action) &&
- (block_given? ? yield(role, self) : true)
+ (block ? yield(role, self) : true)
end
elsif context && context.is_a?(Array)
if context.empty?
@@ -769,7 +768,7 @@ class User < Principal
roles = self.roles.to_a | [builtin_role]
roles.any? do |role|
role.allowed_to?(action) &&
- (block_given? ? yield(role, self) : true)
+ (block ? yield(role, self) : true)
end
else
false
Updated by liaham about 1 year ago
No impact on:
- project:xmera-omnia-operations
- Redmine Dashboards
- project:redmine-local-avatars
- Redmine Legal Notes
Updated by liaham about 1 year ago
- Status changed from New to Closed
- Assignee set to liaham
- % Done changed from 0 to 100
Actions