Changes in Rights and Roles

This commit is contained in:
2024-12-21 18:53:53 +01:00
parent c8521ad1f6
commit 813944fc23
10 changed files with 447 additions and 324 deletions

24
pages/roles/index.vue Normal file
View File

@@ -0,0 +1,24 @@
<script setup>
definePageMeta({
middleware: "auth"
})
const items = ref([])
const setup = async () => {
items.value = await useSupabaseSelect("roles","*")
}
setup()
</script>
<template>
<EntityList
:items="items"
type="roles"
/>
</template>
<style scoped>
</style>