2023-07-27 14:31:52 +09:00
|
|
|
<!--
|
2024-02-14 00:59:27 +09:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 14:31:52 +09:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2023-03-12 16:39:16 +09:00
|
|
|
<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"/>
|
2023-03-12 16:39:16 +09:00
|
|
|
</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';
|
2023-03-12 16:39:16 +09:00
|
|
|
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';
|
2023-03-12 16:39:16 +09:00
|
|
|
import MkRolePreview from '@/components/MkRolePreview.vue';
|
|
|
|
|
2024-01-04 15:30:40 +09:00
|
|
|
const $i = signinRequired();
|
2023-03-12 16:39:16 +09:00
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
const headerActions = computed(() => []);
|
2023-03-12 16:39:16 +09:00
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
const headerTabs = computed(() => []);
|
2023-03-12 16:39:16 +09:00
|
|
|
|
2024-02-16 16:17:09 +09:00
|
|
|
definePageMetadata(() => ({
|
2023-03-12 16:39:16 +09:00
|
|
|
title: i18n.ts.roles,
|
2023-11-04 07:20:53 +09:00
|
|
|
icon: 'ph-seal-check ph-bold ph-lg',
|
2024-02-16 16:17:09 +09:00
|
|
|
}));
|
2023-03-12 16:39:16 +09:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
|
|
|
|
</style>
|