-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from ThatNinjaGuy/develop
- Loading branch information
Showing
13 changed files
with
173 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
export const NEW_ORDERS = "newOrders"; | ||
export const ORDER_READY = "orderReady"; | ||
export const ORDER_COMPLETED = "orderCompleted"; | ||
export const NEW_GUESTS = "newGuests"; | ||
export const UNKNOWN_CATEGORY = "unknownCategory"; | ||
|
||
export const DEFAULT_NOTIFICATION_SETTINGS = { | ||
[NEW_ORDERS]: true, | ||
[ORDER_READY]: true, | ||
[ORDER_COMPLETED]: true, | ||
[NEW_GUESTS]: false, | ||
}; | ||
|
||
export const NOTIFICATION_SETTINGS_LABELS = [ | ||
{ | ||
displayText: "New Order receivied", | ||
key: NEW_ORDERS, | ||
}, | ||
{ | ||
displayText: "Order Ready for pickup", | ||
key: ORDER_READY, | ||
}, | ||
{ | ||
displayText: "Order Complete", | ||
key: ORDER_COMPLETED, | ||
}, | ||
// { | ||
// displayText: "New Guest arrived", | ||
// key: NEW_GUESTS, | ||
// }, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.