Browse Source

Remove unused "mention_users" permission from the roles table (#37974).


git-svn-id: https://svn.redmine.org/redmine/trunk@22347 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/5.1.0
Go MAEDA 6 months ago
parent
commit
1dae2cc595
1 changed files with 12 additions and 0 deletions
  1. 12
    0
      db/migrate/20231012112407_remove_mention_users_permission.rb

+ 12
- 0
db/migrate/20231012112407_remove_mention_users_permission.rb View File

@@ -0,0 +1,12 @@
class RemoveMentionUsersPermission < ActiveRecord::Migration[6.1]
def up
Role.reset_column_information
Role.all.each do |r|
r.remove_permission!(:mention_users) if r.has_permission?(:mention_users)
end
end

def down
# no-op
end
end

Loading…
Cancel
Save