Mercurial > hg > soundsoftware-site
view db/migrate/099_add_delete_wiki_pages_attachments_permission.rb @ 1550:7d825cbd76c8 feature_1136
Ensure we don't leave a git repo lying around for a repo with no corresponding (even if empty) authormap
author | Chris Cannam |
---|---|
date | Tue, 12 Jan 2016 17:22:27 +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