web: fix URLs for FlowURLManager

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-03-25 10:07:10 +01:00
parent cfcf7aa2ae
commit 0b3980e564
1 changed files with 2 additions and 2 deletions

View File

@ -106,11 +106,11 @@ export class AppURLManager {
export class FlowURLManager { export class FlowURLManager {
static defaultUnenrollment(): string { static defaultUnenrollment(): string {
return "-/default/unenrollment/"; return "/flows/-/default/unenrollment/";
} }
static configure(stageUuid: string, rest: string): string { static configure(stageUuid: string, rest: string): string {
return `-/configure/${stageUuid}/${rest}`; return `/flows/-/configure/${stageUuid}/${rest}`;
} }
} }