reorder notification settings by noisy-ness

fixes !54609
This commit is contained in:
C.J. Jameson 2018-11-30 18:16:03 -08:00
parent 953018e3d4
commit 8f83445a8b
2 changed files with 6 additions and 1 deletions

View File

@ -5,7 +5,7 @@ class NotificationSetting < ActiveRecord::Base
ignore_column :events
enum level: { global: 3, watch: 2, mention: 4, participating: 1, disabled: 0, custom: 5 }
enum level: { global: 3, watch: 2, participating: 1, mention: 4, disabled: 0, custom: 5 }
default_value_for :level, NotificationSetting.levels[:global]

View File

@ -0,0 +1,5 @@
---
title: reorder notification settings by noisy-ness
merge_request:
author: C.J. Jameson
type: changed