view db/migrate/096_add_commit_access_permission.rb @ 1070:858f042e8d11 bibplugin_cache

Created a patch for the ProjectsHelper to replace the one previously created for the Projects controller.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 21 Nov 2012 14:42:12 +0000
parents cbb26bc654de
children 622f24f53b42
line wrap: on
line source
class AddCommitAccessPermission < ActiveRecord::Migration
  def self.up
    Role.find(:all).select { |r| not r.builtin? }.each do |r|
      r.add_permission!(:commit_access)
    end
  end

  def self.down
    Role.find(:all).select { |r| not r.builtin? }.each do |r|
      r.remove_permission!(:commit_access)
    end
  end
end