mirror of
https://github.com/redmine/redmine.git
synced 2025-12-15 13:00:25 +01:00
This will be changed to true in the future. git-svn-id: http://svn.redmine.org/redmine/trunk@17947 e93f8b46-1217-0410-a6f0-8f06a7374b81
16 lines
376 B
Ruby
16 lines
376 B
Ruby
# frozen_string_literal: false
|
|
|
|
class AddDeleteWikiPagesAttachmentsPermission < ActiveRecord::Migration[4.2]
|
|
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
|