[CST-4880] Add ServerCheckGuard in order to show internal server error page when rest server is not available

This commit is contained in:
Giuseppe Digilio
2022-01-24 22:04:02 +01:00
parent 4fdd3b84cb
commit 4cfff33301
15 changed files with 290 additions and 21 deletions

View File

@@ -89,6 +89,12 @@ export function getPageNotFoundRoute() {
return `/${PAGE_NOT_FOUND_PATH}`;
}
export const INTERNAL_SERVER_ERROR = '500';
export function getPageInternalServerErrorRoute() {
return `/${INTERNAL_SERVER_ERROR}`;
}
export const INFO_MODULE_PATH = 'info';
export function getInfoModulePath() {
return `/${INFO_MODULE_PATH}`;