Skip to content
Snippets Groups Projects
Commit fe653ea3 authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

Merge branch 'Topic/1297-maintenanceBanner' into 'Product/917-maintenanceFunctionality'

Topic/1297 maintenance banner

See merge request !115
parents 09e170ea 26439a8f
Branches Product/917-maintenanceFunctionality
Tags
3 merge requests!122Product/917 maintenance functionality,!121Sprint/2021 06,!115Topic/1297 maintenance banner
...@@ -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