owltide/pages/admin.vue
Hornwitser 87525a6ef5
All checks were successful
/ build (push) Successful in 1m30s
/ deploy (push) Successful in 16s
Add admin page that can edit users
Add admin page that's only accessible to admins with a listing of users
and the ability to edit the access types of those users.
2025-06-23 00:28:59 +02:00

14 lines
146 B
Vue

<template>
<main>
<h1>Admin</h1>
<h2>Users</h2>
<TableUsers />
</main>
</template>
<script lang="ts" setup>
</script>
<style>
</style>