Compare commits

..

2 Commits

Author SHA1 Message Date
Thea Schöbl
927f847e5c feat: email client prototype 2024-11-04 16:46:53 +00:00
5b7272c31e feat: email client prototype 2024-11-04 17:45:35 +01:00
2 changed files with 2 additions and 1 deletions

View File

@@ -28,7 +28,7 @@ export class MailAdapterService {
}): Observable<T> { }): Observable<T> {
return this.httpClient.request<T>( return this.httpClient.request<T>(
options.method ?? 'GET', options.method ?? 'GET',
`http://localhost:4000/${options.path?.map(encodeURIComponent).join('/') ?? ''}${ `https://cumulet.rz.uni-frankfurt.de/${options.path?.map(encodeURIComponent).join('/') ?? ''}${
options.options options.options
? `?${Object.entries(options.options).map(item => item.map(encodeURIComponent).join('='))}` ? `?${Object.entries(options.options).map(item => item.map(encodeURIComponent).join('='))}`
: '' : ''

View File

@@ -19,6 +19,7 @@ import german from '../../assets/i18n/de.json';
const exceptions = new Set( const exceptions = new Set(
[ [
'ID',
'login', 'login',
'ok', 'ok',
'protein', 'protein',