mirror of
https://github.com/redmine/redmine.git
synced 2025-11-16 10:16:03 +01:00
10 lines
359 B
Ruby
10 lines
359 B
Ruby
|
|
class AddProjectsFeedsPermissions < ActiveRecord::Migration
|
||
|
|
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
|