You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
369 B
10 lines
369 B
6 years ago
|
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
|