##// END OF EJS Templates
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9977 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r663:603e11d7a5aa
r9794:d7b669e50b1c
Show More
030_add_projects_feeds_permissions.rb
12 lines | 423 B | text/x-ruby | RubyLexer
/ db / migrate / 030_add_projects_feeds_permissions.rb
Jean-Philippe Lang
added rss/atom feeds at project levels for:...
r336 class AddProjectsFeedsPermissions < ActiveRecord::Migration
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 # model removed
class Permission < ActiveRecord::Base; end
Jean-Philippe Lang
added rss/atom feeds at project levels for:...
r336 def self.up
Permission.create :controller => "projects", :action => "feeds", :description => "label_feed_plural", :sort => 132, :is_public => true, :mail_option => 0, :mail_enabled => 0
end
def self.down
Permission.find_by_controller_and_action('projects', 'feeds').destroy
end
end