mirror of
				https://github.com/redmine/redmine.git
				synced 2025-10-31 10:25:55 +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 |