0
ashvinu created
How to create a custom notification - in which classes should the code be inserted and how to trigger it in Controller?
Based on which action the modal dropdown is triggered when the notification icon is clicked?
How is the "appUserNotificationHelper.js" being used to send the notifications and where is it called?
Can I get an example of the full-flow implementation of the notification service?
1 Answer(s)
-
0
Hi @ashvinu
- You can define your notifications in
AppNotificationProvider.cs
- It is triggered by bootstrap. Would you like to change anything here ?
- It is used in several places. You can serach for "UserNotificationHelper." in *.js files to see the locations of usages. It is basically used formatting and getting the url of a notification if tehre is one.
- After defining the notification, you can send it in
AppNotifier.cs
like we do for other notifications.
Thanks,
- You can define your notifications in