Skip to content
Snippets Groups Projects
Commit 8adcbc81 authored by Marcel Nellesen's avatar Marcel Nellesen
Browse files

Merge branch 'Sprint/2021-06' into 'master'

Sprint/2021 06

See merge request !121
parents 09e170ea 58591426
No related branches found
No related tags found
1 merge request!121Sprint/2021 06
...@@ -11,6 +11,9 @@ publishDocsTempFolder ...@@ -11,6 +11,9 @@ publishDocsTempFolder
!.yarn/versions !.yarn/versions
.pnp.* .pnp.*
# npm packages
package-lock.json
# Logs # Logs
logs logs
*.log *.log
......
...@@ -20,4 +20,13 @@ export class NoticeApi { ...@@ -20,4 +20,13 @@ export class NoticeApi {
.then(thenHandler) .then(thenHandler)
.catch(catchHandler); .catch(catchHandler);
} }
public static GetMaintenance(
thenHandler: any = apiConnectionBasic.defaultThenHandler,
catchHandler: any = apiConnectionBasic.defaultOnCatch
) {
return axios
.get(getNoticeApiUrl() + encodeURIComponent('getMaintenance'))
.then(thenHandler)
.catch(catchHandler);
}
} }
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment