mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Fixed the issue where I knocked out the ordering of notifications, oops
This commit is contained in:
parent
5c643b066a
commit
fb75ca84fc
1 changed files with 10 additions and 9 deletions
|
@ -2,14 +2,15 @@
|
|||
{
|
||||
public enum NotificationType
|
||||
{
|
||||
NewRequest,
|
||||
Issue,
|
||||
IssueResolved,
|
||||
RequestAvailable,
|
||||
RequestApproved,
|
||||
Test,
|
||||
RequestDeclined,
|
||||
ItemAddedToFaultQueue,
|
||||
WelcomeEmail
|
||||
NewRequest = 0,
|
||||
Issue = 1,
|
||||
RequestAvailable = 2,
|
||||
RequestApproved = 3,
|
||||
AdminNote = 4,
|
||||
Test = 5,
|
||||
RequestDeclined = 6,
|
||||
ItemAddedToFaultQueue = 7,
|
||||
WelcomeEmail = 8,
|
||||
IssueResolved = 9,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue