1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +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

@@ -21,9 +21,6 @@
>
<mdi:cog />
</router-link>
<a :href="`${base}/logout`" :title="$t('button.logout')" v-if="secured" class="btn btn-circle btn-sm">
<mdi:logout />
</a>
</div>
<a
class="input input-sm mt-4 inline-flex cursor-pointer items-center gap-2 font-light hover:border-primary"
@@ -40,5 +37,5 @@
</template>
<script lang="ts" setup>
const { base, secured, hostname } = config;
const { hostname } = config;
</script>