Added more data to mock-api and multiple sub-pages
This commit is contained in:
committed by
Erik Tiekstra
parent
9d82c91348
commit
cb5cb8b486
@@ -7,4 +7,5 @@ export enum IconType {
|
||||
CALENDAR = 'calendar',
|
||||
ENVELOPE = 'envelope',
|
||||
SOK_KANDIDAT = 'sok-kandidat',
|
||||
EDIT = 'edit',
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
import { ParticipantStatus } from '@dafa-enums/participant-status.enum';
|
||||
import { Service } from '@dafa-enums/service.enum';
|
||||
|
||||
export interface Participant {
|
||||
id: number;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
status: ParticipantStatus;
|
||||
nextStep: string;
|
||||
service: Service;
|
||||
errandNumber: number;
|
||||
startDate: Date;
|
||||
endDate: Date;
|
||||
handleBefore: Date;
|
||||
fullName?: string;
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
export interface User {
|
||||
id: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user