diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-16 12:22:17 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-16 12:22:17 +0000 |
commit | fa0df9132b32daa3da4fdd521edd03eb38538da4 (patch) | |
tree | 1dcf90ca54439563b986b746a2f1d313cedcaefe /app | |
parent | 2b559e5d21a7500239ac0b597e38e96f6c45ab2e (diff) | |
download | redmine-fa0df9132b32daa3da4fdd521edd03eb38538da4.tar.gz redmine-fa0df9132b32daa3da4fdd521edd03eb38538da4.zip |
remove spaces inside {} of app/models/custom_field_enumeration.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20395 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/models/custom_field_enumeration.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/custom_field_enumeration.rb b/app/models/custom_field_enumeration.rb index a755bb235..4ba824355 100644 --- a/app/models/custom_field_enumeration.rb +++ b/app/models/custom_field_enumeration.rb @@ -25,7 +25,7 @@ class CustomFieldEnumeration < ActiveRecord::Base validates_numericality_of :position, :only_integer => true before_create :set_position - scope :active, lambda { where(:active => true) } + scope :active, lambda {where(:active => true)} def to_s name.to_s |