Freigabe #4

Merged
bjoernpoettker merged 23 commits from Freigabe into main 2026-06-16 14:49:23 +00:00
Showing only changes of commit 15e06bd60f - Show all commits
@@ -17,8 +17,8 @@ export class DailyDigestService {
private readonly mailService: MailService, private readonly mailService: MailService,
private readonly configService: ConfigService, private readonly configService: ConfigService,
) { ) {
this.appUrl = this.configService.get<string>('APP_URL', ''); this.appUrl = this.configService.get<string>('APP_URL', '').replace(/\/+$/, '');
this.agrarmonitorBaseUrl = this.configService.get<string>('AGRARMONITOR_BASE_URL', ''); this.agrarmonitorBaseUrl = this.configService.get<string>('AGRARMONITOR_BASE_URL', '').replace(/\/+$/, '');
} }
async sendDigestForUser(userId: string, email: string, preferredUsername?: string) { async sendDigestForUser(userId: string, email: string, preferredUsername?: string) {