minor v1.5.0 #98

Merged
jkeffects merged 34 commits from develop into main 2025-05-06 07:52:27 +00:00
2 changed files with 0 additions and 4 deletions
Showing only changes of commit a827185bf1 - Show all commits

View file

@ -18,7 +18,6 @@ export default abstract class NewsletterFactory {
newsletterSignatur: record.newsletterSignatur,
isSent: record.isSent,
recipientsByQueryId: record?.recipientsByQuery ? record.recipientsByQuery.id : null,
recipientsByQuery: record?.recipientsByQuery ? QueryStoreFactory.mapToSingle(record.recipientsByQuery) : null,
};
}

View file

@ -1,5 +1,3 @@
import { QueryStoreViewModel } from "../../configuration/queryStore.models";
export interface NewsletterViewModel {
id: number;
title: string;
@ -9,5 +7,4 @@ export interface NewsletterViewModel {
newsletterSignatur: string;
isSent: boolean;
recipientsByQueryId?: string;
recipientsByQuery?: QueryStoreViewModel;
}