From: Eric Davis Date: Mon, 20 Sep 2010 16:38:00 +0000 (+0000) Subject: Add User#allowed_to_globally? which wraps User#allowed_to? X-Git-Tag: 1.1.0~349 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6a76aef3752052e9f90517abd611a534fbb01849;p=redmine.git Add User#allowed_to_globally? which wraps User#allowed_to? git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4164 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/user.rb b/app/models/user.rb index c5c638f93..5ae7a56d3 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -352,6 +352,12 @@ class User < Principal false end end + + # Is the user allowed to do the specified action on any project? + # See allowed_to? for the actions and valid options. + def allowed_to_globally?(action, options) + allowed_to?(action, nil, options.reverse_merge(:global => true)) + end def self.current=(user) @current_user = user