Mercurial > hg > soundsoftware-site
view db/migrate/099_add_delete_wiki_pages_attachments_permission.rb @ 1556:81dd71991dc1 feature_1136
hg-hash option does not appear reliable ("Not updating refs/notes/hg (new tip XXX does not contain YYY")
author | Chris Cannam |
---|---|
date | Wed, 13 Jan 2016 13:33:03 +0000 |
parents | 261b3d9a4903 |
children |
line wrap: on
line source
class AddDeleteWikiPagesAttachmentsPermission < ActiveRecord::Migration def self.up Role.all.each do |r| r.add_permission!(:delete_wiki_pages_attachments) if r.has_permission?(:edit_wiki_pages) end end def self.down Role.all.each do |r| r.remove_permission!(:delete_wiki_pages_attachments) end end end