File: 016_add_repositories_permissions.rb

package info (click to toggle)
redmine 1.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 27,268 kB
  • ctags: 23,995
  • sloc: ruby: 177,441; sh: 506; perl: 232; sql: 96; makefile: 31
file content (22 lines) | stat: -rw-r--r-- 1,658 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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