You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20231012112407_remove_mention_users_permission.rb 262B

123456789101112
  1. class RemoveMentionUsersPermission < ActiveRecord::Migration[6.1]
  2. def up
  3. Role.reset_column_information
  4. Role.all.each do |r|
  5. r.remove_permission!(:mention_users) if r.has_permission?(:mention_users)
  6. end
  7. end
  8. def down
  9. # no-op
  10. end
  11. end