]> source.dussan.org Git - redmine.git/commitdiff
remove spaces inside {} of app/models/enumeration.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 16 Nov 2020 12:22:25 +0000 (12:22 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 16 Nov 2020 12:22:25 +0000 (12:22 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20396 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/enumeration.rb

index b5ee7b8117831061ad30ee5cfe3b70e69b66c188..a8b74b8f2038ed60b82c9442c3fd2753de18987b 100644 (file)
@@ -35,10 +35,10 @@ class Enumeration < ActiveRecord::Base
   validates_uniqueness_of :name, :scope => [:type, :project_id]
   validates_length_of :name, :maximum => 30
 
-  scope :shared, lambda { where(:project_id => nil) }
-  scope :sorted, lambda { order(:position) }
-  scope :active, lambda { where(:active => true) }
-  scope :system, lambda { where(:project_id => nil) }
+  scope :shared, lambda {where(:project_id => nil)}
+  scope :sorted, lambda {order(:position)}
+  scope :active, lambda {where(:active => true)}
+  scope :system, lambda {where(:project_id => nil)}
   scope :named, lambda {|arg| where("LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip)}
 
   def self.default