74053: remove fdescribe + use consts for routing paths

This commit is contained in:
Kristof De Langhe
2020-10-27 12:29:39 +01:00
parent 736704aae8
commit 2d67b0b13e
3 changed files with 10 additions and 4 deletions

View File

@@ -61,6 +61,12 @@ export function getUnauthorizedRoute() {
return `/${UNAUTHORIZED_PATH}`;
}
export const PAGE_NOT_FOUND_PATH = '404';
export function getPageNotFoundRoute() {
return `/${PAGE_NOT_FOUND_PATH}`;
}
export const INFO_MODULE_PATH = 'info';
export function getInfoModulePath() {
return `/${INFO_MODULE_PATH}`;