030_add_projects_feeds_permissions.rb
9 lines
| 359 B
| text/x-ruby
|
RubyLexer
|
r336 | 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 | ||||