annotate db/migrate/099_add_delete_wiki_pages_attachments_permission.rb @ 1524:82fac3dcf466 redmine-2.5-integration

Fix failure to interpret Javascript when autocompleting members for project
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 11 Sep 2014 10:24:38 +0100
parents 261b3d9a4903
children
rev   line source
Chris@0 1 class AddDeleteWikiPagesAttachmentsPermission < ActiveRecord::Migration
Chris@0 2 def self.up
Chris@1464 3 Role.all.each do |r|
Chris@909 4 r.add_permission!(:delete_wiki_pages_attachments) if r.has_permission?(:edit_wiki_pages)
Chris@909 5 end
Chris@0 6 end
Chris@0 7
Chris@0 8 def self.down
Chris@1464 9 Role.all.each do |r|
Chris@909 10 r.remove_permission!(:delete_wiki_pages_attachments)
Chris@909 11 end
Chris@0 12 end
Chris@0 13 end