Merge branch 'dev' into feat/user-homepage

This commit is contained in:
Tibo De Peuter 2025-03-23 10:36:12 +01:00
commit 207cd22dec
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
7 changed files with 242 additions and 27 deletions

View file

@ -19,6 +19,7 @@
<p>
Your access token for the backend is: <code>{{ auth.authState.user?.access_token }}</code>
</p>
<v-btn to="/user">home</v-btn>
</div>
<v-btn @click="testAuthenticated">Send test request</v-btn>

View file

@ -70,6 +70,7 @@
You are currently logged in as {{ auth.authState.user!.profile.name }} ({{ auth.authState.activeRole }})
</p>
<v-btn @click="performLogout">Logout</v-btn>
<v-btn to="/user">home</v-btn>
</div>
</main>
</template>