sharkey/packages/frontend/src/pages/settings/roles.vue

49 lines
1.2 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and misskey-project
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<div class="_gaps_m">
<FormSection first>
<template #label>{{ i18n.ts.rolesAssignedToMe }}</template>
<div class="_gaps_s">
2023-05-19 20:52:15 +09:00
<MkRolePreview v-for="role in $i.roles" :key="role.id" :role="role" :forModeration="false"/>
</div>
</FormSection>
<FormSection>
<template #label>{{ i18n.ts._role.policies }}</template>
<div class="_gaps_s">
<div v-for="policy in Object.keys($i.policies)" :key="policy">
{{ policy }} ... {{ $i.policies[policy] }}
</div>
</div>
</FormSection>
</div>
</template>
<script lang="ts" setup>
2023-12-21 11:36:45 +09:00
import { computed } from 'vue';
import FormSection from '@/components/form/section.vue';
2023-09-19 16:37:43 +09:00
import * as os from '@/os.js';
import { i18n } from '@/i18n.js';
2024-01-04 15:30:40 +09:00
import { signinRequired } from '@/account.js';
2023-09-19 16:37:43 +09:00
import { definePageMetadata } from '@/scripts/page-metadata.js';
import MkRolePreview from '@/components/MkRolePreview.vue';
2024-01-04 15:30:40 +09:00
const $i = signinRequired();
const headerActions = computed(() => []);
const headerTabs = computed(() => []);
definePageMetadata(() => ({
title: i18n.ts.roles,
icon: 'ph-seal-check ph-bold ph-lg',
}));
</script>
<style lang="scss" module>
</style>