1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

feat!: removes legacy authentication model (#2633)

This commit is contained in:
Amir Raminfar
2023-12-31 14:05:41 -08:00
committed by GitHub
parent cb6adf275d
commit 6eb356aaa9
14 changed files with 9 additions and 338 deletions

View File

@@ -32,9 +32,6 @@
<router-link :to="{ name: 'settings' }" class="btn btn-outline btn-sm">
<mdi:cog /> {{ $t("button.settings") }}
</router-link>
<a class="btn btn-outline btn-sm" :href="`${base}/logout`" :title="$t('button.logout')" v-if="secured">
<mdi:logout /> {{ $t("button.logout") }}
</a>
</div>
<ul class="menu">
@@ -56,7 +53,6 @@
</template>
<script lang="ts" setup>
const { base, secured } = config;
import { sessionHost } from "@/composable/storage";
const store = useContainerStore();
const route = useRoute();