##// END OF EJS Templates
Add User#allowed_to_globally? which wraps User#allowed_to?...
Eric Davis -
r4050:6a76aef37520
parent child
Show More
@@ -352,6 +352,12 class User < Principal
352 false
352 false
353 end
353 end
354 end
354 end
355
356 # Is the user allowed to do the specified action on any project?
357 # See allowed_to? for the actions and valid options.
358 def allowed_to_globally?(action, options)
359 allowed_to?(action, nil, options.reverse_merge(:global => true))
360 end
355
361
356 def self.current=(user)
362 def self.current=(user)
357 @current_user = user
363 @current_user = user
General Comments 0
You need to be logged in to leave comments. Login now