blob: 63131001e0999c4778af4ad767f513ddc6d00911 (
plain)
1
2
3
4
5
6
7
8
9
|
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
|