diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-04-26 23:51:10 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-04-26 23:51:10 +0000 |
commit | d0d01d4e704b0d15dfd3ce2d5213ab8b5a6678fb (patch) | |
tree | 31a2f938e01ae8032d0e4c19d979f7df575d332e /app/models/role.rb | |
parent | 71649ba2f137f3a48af031193af2b7f315519299 (diff) | |
download | redmine-d0d01d4e704b0d15dfd3ce2d5213ab8b5a6678fb.tar.gz redmine-d0d01d4e704b0d15dfd3ce2d5213ab8b5a6678fb.zip |
model: replace Rails2 "named_scope" to Rails3 "scope"
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9537 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/role.rb')
-rw-r--r-- | app/models/role.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/models/role.rb b/app/models/role.rb index 06822fdba..6778f6f69 100644 --- a/app/models/role.rb +++ b/app/models/role.rb @@ -26,9 +26,9 @@ class Role < ActiveRecord::Base ['own', :label_issues_visibility_own] ] - named_scope :sorted, {:order => 'builtin, position'} - named_scope :givable, { :conditions => "builtin = 0", :order => 'position' } - named_scope :builtin, lambda { |*args| + scope :sorted, {:order => 'builtin, position'} + scope :givable, { :conditions => "builtin = 0", :order => 'position' } + scope :builtin, lambda { |*args| compare = 'not' if args.first == true { :conditions => "#{compare} builtin = 0" } } |