2022-02-27 11:07:39 +09:00
|
|
|
import define from '../../../define.js';
|
|
|
|
import { UserGroups } from '@/models/index.js';
|
2019-05-18 20:36:33 +09:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['groups', 'account'],
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2019-05-18 20:36:33 +09:00
|
|
|
|
|
|
|
kind: 'read:user-groups',
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-05-18 20:36:33 +09:00
|
|
|
items: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-05-18 20:36:33 +09:00
|
|
|
ref: 'UserGroup',
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2019-05-18 20:36:33 +09:00
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2019-05-18 20:36:33 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 14:05:32 +09:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2019-05-18 20:36:33 +09:00
|
|
|
const userGroups = await UserGroups.find({
|
|
|
|
userId: me.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
return await Promise.all(userGroups.map(x => UserGroups.pack(x)));
|
|
|
|
});
|