Selaa lähdekoodia

Skip validation if attribute did not change.

git-svn-id: http://svn.redmine.org/redmine/trunk@13851 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.0.0
Jean-Philippe Lang 9 vuotta sitten
vanhempi
commit
0eda7765fa
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2
    2
      app/models/role.rb

+ 2
- 2
app/models/role.rb Näytä tiedosto

@@ -71,10 +71,10 @@ class Role < ActiveRecord::Base
validates_length_of :name, :maximum => 30
validates_inclusion_of :issues_visibility,
:in => ISSUES_VISIBILITY_OPTIONS.collect(&:first),
:if => lambda {|role| role.respond_to?(:issues_visibility)}
:if => lambda {|role| role.respond_to?(:issues_visibility) && role.issues_visibility_changed?}
validates_inclusion_of :users_visibility,
:in => USERS_VISIBILITY_OPTIONS.collect(&:first),
:if => lambda {|role| role.respond_to?(:users_visibility)}
:if => lambda {|role| role.respond_to?(:users_visibility) && role.users_visibility_changed?}

# Copies attributes from another role, arg can be an id or a Role
def copy_from(arg, options={})

Loading…
Peruuta
Tallenna