REFACTOR: Rename SiteSetting.disable_edit_notifications to disable_system_edit_notifications (#7958)

* REFACTOR: Rename SiteSetting.disable_edit_notifications to disable_system_edit_notifications

- The older name could cause some confusion because the setting does not disable all edit notifications, only system ones.

* FIX: Add frozen_string_literal: true in the migration

* DEV: Deprecate 'disable_edit_notifications'
This commit is contained in:
Rishabh
2019-07-31 20:20:41 +05:30
committed by GitHub
parent a49b7bb84a
commit dcb47d902b
38 changed files with 47 additions and 39 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
class RenameEditNotificationSetting < ActiveRecord::Migration[5.2]
def change
execute "UPDATE site_settings SET name = 'disable_system_edit_notifications' WHERE name = 'disable_edit_notifications'"
end
end