- add AvatarController.ts
Some checks failed
CI Pipeline / japa-tests (push) Failing after 52s

- adapted menu.ts, NavBar.vue, NavBarItem.vue for highlighting active nav item
- NavBarItemLabel.vue for app menu highlighting
- adapted routes.ts
- adapted app.edge for new favicon
- adapted LayoutAuthenticated.vue (:showAsideMenu="false") for showing AsideMenu optional
- new material icons: BriefcaseCheck.vue, SwapHorizontal.vue, AccountGroup.vue, Lock.vue
- started with FirstRunWizard
This commit is contained in:
Kaimbacher 2023-12-15 17:17:33 +01:00
parent ae0c471e93
commit cefd9081ae
31 changed files with 763 additions and 126 deletions

View file

@ -66,7 +66,7 @@ const destroy = async (id) => {
<SectionTitleLineWithButton :icon="mdiAccountKey" title="Tethys Users" main>
<BaseButton
v-if="can.create"
:route-name="stardust.route('user.create')"
:route-name="stardust.route('settings.user.create')"
:icon="mdiPlus"
label="Add"
color="modern"
@ -80,7 +80,7 @@ const destroy = async (id) => {
</NotificationBar>
<!-- <NotificationBar color="success" :icon="mdiAlertBoxOutline">{{ users.meta }}</NotificationBar> -->
<CardBox class="mb-6" has-table>
<form @submit.prevent="form.get(stardust.route('user.index'))">
<form @submit.prevent="form.get(stardust.route('settings.user.index'))">
<div class="py-2 flex">
<div class="flex pl-4">
<input
@ -113,7 +113,7 @@ const destroy = async (id) => {
<tr v-for="user in users.data" :key="user.id">
<td data-label="Login">
<Link
v-bind:href="stardust.route('user.show', [user.id])"
v-bind:href="stardust.route('settings.user.show', [user.id])"
class="no-underline hover:underline text-cyan-600 dark:text-cyan-400"
>
{{ user.login }}
@ -127,7 +127,7 @@ const destroy = async (id) => {
<BaseButtons type="justify-start lg:justify-end" no-wrap>
<BaseButton
v-if="can.edit"
:route-name="stardust.route('user.edit', [user.id])"
:route-name="stardust.route('settings.user.edit', [user.id])"
color="info"
:icon="mdiSquareEditOutline"
small