enable public report
This commit is contained in:
parent
766114bf53
commit
6aae09cd03
16 changed files with 567 additions and 7 deletions
|
@ -10,6 +10,7 @@ export const useConfigurationStore = defineStore("configuration", {
|
|||
clubWebsite: "",
|
||||
appCustom_login_message: "",
|
||||
appShow_link_to_calendar: false as boolean,
|
||||
appShow_link_to_damagereport: false as boolean,
|
||||
|
||||
serverOffline: false as boolean,
|
||||
};
|
||||
|
@ -25,6 +26,7 @@ export const useConfigurationStore = defineStore("configuration", {
|
|||
this.clubWebsite = res.data["club.website"];
|
||||
this.appCustom_login_message = res.data["app.custom_login_message"];
|
||||
this.appShow_link_to_calendar = res.data["app.show_link_to_calendar"];
|
||||
this.appShow_link_to_damagereport = res.data["app.show_link_to_damagereport"];
|
||||
})
|
||||
.catch(() => {
|
||||
this.serverOffline = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue