49 lines
1.2 KiB
Vue
49 lines
1.2 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div class="_gaps_m">
|
|
<FormSection first>
|
|
<template #label>{{ i18n.ts.rolesAssignedToMe }}</template>
|
|
<div class="_gaps_s">
|
|
<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>
|
|
import { computed } from 'vue';
|
|
import FormSection from '@/components/form/section.vue';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { signinRequired } from '@/account.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import MkRolePreview from '@/components/MkRolePreview.vue';
|
|
|
|
const $i = signinRequired();
|
|
|
|
const headerActions = computed(() => []);
|
|
|
|
const headerTabs = computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.roles,
|
|
icon: 'ti ti-badges',
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
|
|
</style>
|