web: fix URLs for FlowURLManager
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
cfcf7aa2ae
commit
0b3980e564
|
@ -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}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue