Rename some enums

This commit is contained in:
James Cole
2022-04-13 16:22:36 +02:00
parent 089514908d
commit 4a3c2d5d97
3 changed files with 7 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ namespace FireflyIII\Enums;
enum WebhookTrigger: int
{
case TRIGGER_STORE_TRANSACTION = 100;
case TRIGGER_UPDATE_TRANSACTION = 110;
case TRIGGER_DESTROY_TRANSACTION = 120;
case STORE_TRANSACTION = 100;
case UPDATE_TRANSACTION = 110;
case DESTROY_TRANSACTION = 120;
}