diff --git a/src/main/java/onlydust/com/marketplace/kernel/model/notification/NotificationCategory.java b/src/main/java/onlydust/com/marketplace/kernel/model/notification/NotificationCategory.java index f052e7a..26557e5 100644 --- a/src/main/java/onlydust/com/marketplace/kernel/model/notification/NotificationCategory.java +++ b/src/main/java/onlydust/com/marketplace/kernel/model/notification/NotificationCategory.java @@ -3,6 +3,10 @@ import java.util.List; public enum NotificationCategory { + /** E.g. deposit received, etc. */ + SPONSOR_LEAD, + /** E.g. funds allocated, etc. */ + PROGRAM_LEAD, /** E.g. application to review, etc. */ MAINTAINER_PROJECT_CONTRIBUTOR, /** E.g. committee application created, etc. */ @@ -14,8 +18,7 @@ public enum NotificationCategory { /** E.g. KYCB document failed, KYCB complete your profile, etc. */ GLOBAL_BILLING_PROFILE, /** E.g. product release, new incoming ODHack, etc.*/ - GLOBAL_MARKETING - ; + GLOBAL_MARKETING; public List defaultChannels() { return List.of(NotificationChannel.IN_APP, NotificationChannel.EMAIL);