enable public report

This commit is contained in:
Julian Krauser 2025-07-16 12:24:48 +02:00
parent 766114bf53
commit 6aae09cd03
16 changed files with 567 additions and 7 deletions

View file

@ -69,6 +69,9 @@
<RouterLink v-if="appShow_link_to_calendar" :to="{ name: 'public-calendar' }" button primary-outline>
zum Kalender
</RouterLink>
<RouterLink v-if="appShow_link_to_damagereport" :to="{ name: 'public-damage_report' }" button primary-outline>
Schaden melden
</RouterLink>
</div>
<FormBottomBar />
@ -100,7 +103,7 @@ export default defineComponent({
};
},
computed: {
...mapState(useConfigurationStore, ["clubName", "appShow_link_to_calendar"]),
...mapState(useConfigurationStore, ["clubName", "appShow_link_to_calendar", "appShow_link_to_damagereport"]),
},
mounted() {
this.username = localStorage.getItem("username") ?? "";