mirror of
https://github.com/redmine/redmine.git
synced 2025-11-03 03:46:19 +01:00
10 lines
369 B
Ruby
10 lines
369 B
Ruby
|
|
namespace :redmine do
|
||
|
|
desc "List all permissions and the actions registered with them"
|
||
|
|
task :permissions => :environment do
|
||
|
|
puts "Permission Name - controller/action pairs"
|
||
|
|
Redmine::AccessControl.permissions.sort {|a,b| a.name.to_s <=> b.name.to_s }.each do |permission|
|
||
|
|
puts ":#{permission.name} - #{permission.actions.join(', ')}"
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|