protected SaveNotificationTemplateInputDto getSaveNotificationTemplateInputDto()

in src/main/java/com/epam/digital/data/platform/notification/service/AbstractGenericNotificationLoader.java [55:62]


  protected SaveNotificationTemplateInputDto getSaveNotificationTemplateInputDto(
      NotificationDto notificationDto) throws IOException {
    File templateMetadataFile = notificationDto.getTemplateMetadataFile();
    var templateMetadata = getNotificationAttributes(templateMetadataFile);
    var inputDto = NotificationMetadataMapper.toSaveNotificationTemplateInputDto(templateMetadata);
    inputDto.setContent(notificationDto.getContent());
    return inputDto;
  }