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