🧑‍💻 Add UI for generating API tokens (/token)

This commit is contained in:
2023-02-20 01:03:52 +01:00
parent b254847e74
commit 0e5e693422
5 changed files with 172 additions and 1 deletions

View File

@ -20,7 +20,9 @@ const route = useRoute();
const routeName = computed(() => route.name);
const isDataView = computed(() => {
return (
routeName.value != "title.settings" && routeName.value != "title.login"
routeName.value != "title.settings" &&
routeName.value != "title.login" &&
routeName.value != "title.token"
);
});
</script>