private boolean isIgnoreChannelPreferences()

in ddm-notification-service/src/main/java/com/epam/digital/data/platform/notification/facade/UserNotificationFacade.java [147:154]


  private boolean isIgnoreChannelPreferences(UserNotificationMessageDto notificationRecord) {
    if (notificationRecord.getNotification() == null) {
      var msg = "IgnoreChannelPreferences flag is not presented in message";
      auditFacade.sendAuditOnFailure(null, null, Step.BEFORE, msg);
      throw new NotificationException(msg);
    }
    return notificationRecord.getNotification().isIgnoreChannelPreferences();
  }