Notification addon

To register new notification type where to include this code;
@PostConstruct
public void postConstruct() {
notificationTypesRepository.registerTypes(
new NotificationType(“info”, “INFO_CIRCLE”),
new NotificationType(“warn”, “WARNING”)
);
}

thanks

Used in application file and it is working, :grinning: