From aaa712c37c1bb6ef01b862d26006be85166073f6 Mon Sep 17 00:00:00 2001 From: veenm Date: Tue, 15 Apr 2025 20:55:24 +0200 Subject: [PATCH] aftrap pipeline + unused import + toevoeging company --- src/app/models/company.ts | 9 +++++++++ src/app/pages/agenda/agenda.component.ts | 3 +-- 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 src/app/models/company.ts diff --git a/src/app/models/company.ts b/src/app/models/company.ts new file mode 100644 index 0000000..c7f38ee --- /dev/null +++ b/src/app/models/company.ts @@ -0,0 +1,9 @@ +export class Company { + id: number; + name: string; + email: string; + img_href: string; + address: string; + postal_code: string; + city: string; +} diff --git a/src/app/pages/agenda/agenda.component.ts b/src/app/pages/agenda/agenda.component.ts index c9ce8f5..3f1430f 100644 --- a/src/app/pages/agenda/agenda.component.ts +++ b/src/app/pages/agenda/agenda.component.ts @@ -18,14 +18,13 @@ import {DateFormatter} from '../../utils/date-formatter'; import {WeekDay} from '../../models/week-day'; import {NewItemComponent} from '../../components/new-item/new-item.component'; import {timeAfterStartValidator} from '../../models/validators/time-after-start-validator'; -import {TuiChevron} from '@taiga-ui/kit'; @Component({ selector: 'app-agenda', imports: [NgFor, TuiButton, CommonModule, NgIf, ModalComponent, ReactiveFormsModule, TuiInputTimeModule, TuiTextfieldControllerModule, - TuiInputModule, TuiTextareaModule, TuiInputDateModule, TuiIcon, DetailsComponent, TuiCalendar, NewItemComponent, TuiChevron], + TuiInputModule, TuiTextareaModule, TuiInputDateModule, TuiIcon, DetailsComponent, TuiCalendar, NewItemComponent], templateUrl: './agenda.component.html', providers: [tuiDateFormatProvider({separator: '-'}), AppointmentService], styleUrl: './agenda.component.scss'