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
|
public enum NotificationType
|
||||||
{
|
{
|
||||||
NewRequest,
|
NewRequest = 0,
|
||||||
Issue,
|
Issue = 1,
|
||||||
IssueResolved,
|
RequestAvailable = 2,
|
||||||
RequestAvailable,
|
RequestApproved = 3,
|
||||||
RequestApproved,
|
AdminNote = 4,
|
||||||
Test,
|
Test = 5,
|
||||||
RequestDeclined,
|
RequestDeclined = 6,
|
||||||
ItemAddedToFaultQueue,
|
ItemAddedToFaultQueue = 7,
|
||||||
WelcomeEmail
|
WelcomeEmail = 8,
|
||||||
|
IssueResolved = 9,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue