update permissions

This commit is contained in:
Julian Krauser 2025-07-23 10:28:37 +02:00
parent 6c1140f7d2
commit 8c4a53bc17
22 changed files with 89 additions and 24 deletions

View file

@ -1,6 +1,7 @@
<template>
<RouterLink
:to="{ name: 'admin-unit-inspection_plan-overview', params: { inspectionPlanId: inspectionPlan.id } }"
:disabled="!can('create', 'unit', 'inspection_plan')"
class="flex flex-col h-fit w-full border border-primary rounded-md"
>
<div class="bg-primary p-2 text-white flex flex-row justify-between items-center">
@ -15,6 +16,8 @@
<script setup lang="ts">
import { defineComponent, type PropType } from "vue";
import type { InspectionPlanViewModel } from "@/viewmodels/admin/unit/inspection/inspectionPlan.models";
import { mapState } from "pinia";
import { useAbilityStore } from "@/stores/ability";
</script>
<script lang="ts">
@ -25,5 +28,8 @@ export default defineComponent({
default: {},
},
},
computed: {
...mapState(useAbilityStore, ["can"]),
},
});
</script>