-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the modals to use the more global base for the comparators/par…
…ameters
- Loading branch information
Austin Kregel
committed
Jun 26, 2020
1 parent
70b27f3
commit 625815d
Showing
10 changed files
with
208 additions
and
623 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
module.exports = [{"type":"App\\Events\\TransactionUpdated","name":"When a transaction is updated (moving from pending to not pending, updating amounts, etc...)"},{"type":"App\\Events\\TransactionCreated","name":"When a transaction is initially created (only fired once per transaction)"},{"type":"App\\Events\\TransactionGroupedEvent","name":"When a transaction is added to a group (this gives you access to the `tag` variable in your title, body and payload.)"}] | ||
module.exports = [ | ||
{ | ||
"type": "App\\Events\\TransactionUpdated", | ||
"name": "When a transaction is updated (moving from pending to not pending, updating amounts, etc...)" | ||
}, | ||
{ | ||
"type": "App\\Events\\TransactionCreated", | ||
"name": "When a transaction is initially created (only fired once per transaction)" | ||
}, | ||
{ | ||
"type": "App\\Events\\TransactionGroupedEvent", | ||
"name": "When a transaction is added to a group (this gives you access to the `tag` variable in your title, body and payload.)" | ||
} | ||
] |
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 |
---|---|---|
@@ -1 +1,30 @@ | ||
module.exports = [{"type":"Illuminate\\Notifications\\Channels\\SlackWebhookChannel","name":"Slack"},{"type":"NotificationChannels\\Discord\\DiscordChannel","name":"Discord"},{"type":"NotificationChannels\\Webhook\\WebhookChannel","name":"Webhook"},{"type":"Illuminate\\Notifications\\Channels\\BroadcastChannel","name":"Broadcasts"},{"type":"Illuminate\\Notifications\\Channels\\MailChannel","name":"Email"},{"type":"Illuminate\\Notifications\\Channels\\NexmoSmsChannel","name":"Nexmo"},{"type":"Illuminate\\Notifications\\Channels\\DatabaseChannel","name":"In-site notification"}] | ||
module.exports = [ | ||
{ | ||
"type": "Illuminate\\Notifications\\Channels\\SlackWebhookChannel", | ||
"name": "Slack" | ||
}, | ||
{ | ||
"type": "NotificationChannels\\Discord\\DiscordChannel", | ||
"name": "Discord" | ||
}, | ||
{ | ||
"type": "NotificationChannels\\Webhook\\WebhookChannel", | ||
"name": "Webhook" | ||
}, | ||
{ | ||
"type": "Illuminate\\Notifications\\Channels\\BroadcastChannel", | ||
"name": "Broadcasts" | ||
}, | ||
{ | ||
"type": "Illuminate\\Notifications\\Channels\\MailChannel", | ||
"name": "Email" | ||
}, | ||
{ | ||
"type": "Illuminate\\Notifications\\Channels\\NexmoSmsChannel", | ||
"name": "Nexmo" | ||
}, | ||
{ | ||
"type": "Illuminate\\Notifications\\Channels\\DatabaseChannel", | ||
"name": "In-site notification" | ||
} | ||
] |
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.