Mercurial > hg > soundsoftware-site
view db/migrate/.svn/text-base/016_add_repositories_permissions.rb.svn-base @ 599:251b380117ce feature_227
Introduce a new latest_downloads plugin to manage active and shortcut for attachments.
Add a table for attachment active/shortcut data.
Move existing active-handler code into the new plugin (but still using the "old" active column in the attachments table). Note the files_controller stuff doesn't actually work here.
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Tue, 16 Aug 2011 17:01:19 +0100 |
parents | 513646585e45 |
children |
line wrap: on
line source
class AddRepositoriesPermissions < ActiveRecord::Migration # model removed class Permission < ActiveRecord::Base; end def self.up Permission.create :controller => "repositories", :action => "show", :description => "button_view", :sort => 1450, :is_public => true Permission.create :controller => "repositories", :action => "browse", :description => "label_browse", :sort => 1460, :is_public => true Permission.create :controller => "repositories", :action => "entry", :description => "entry", :sort => 1462, :is_public => true Permission.create :controller => "repositories", :action => "revisions", :description => "label_view_revisions", :sort => 1470, :is_public => true Permission.create :controller => "repositories", :action => "revision", :description => "label_view_revisions", :sort => 1472, :is_public => true Permission.create :controller => "repositories", :action => "diff", :description => "diff", :sort => 1480, :is_public => true end def self.down Permission.find(:first, :conditions => ["controller=? and action=?", 'repositories', 'show']).destroy Permission.find(:first, :conditions => ["controller=? and action=?", 'repositories', 'browse']).destroy Permission.find(:first, :conditions => ["controller=? and action=?", 'repositories', 'entry']).destroy Permission.find(:first, :conditions => ["controller=? and action=?", 'repositories', 'revisions']).destroy Permission.find(:first, :conditions => ["controller=? and action=?", 'repositories', 'revision']).destroy Permission.find(:first, :conditions => ["controller=? and action=?", 'repositories', 'diff']).destroy end end