summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/clips/list.ts
blob: 6b90b114df7f243f8fc5642bbba2791e96f2be74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import define from '../../define';
import { Clips } from '../../../../models';

export const meta = {
	tags: ['clips', 'account'],

	requireCredential: true as const,

	kind: 'read:account',

	res: {
		type: 'array' as const,
		optional: false as const, nullable: false as const,
		items: {
			type: 'object' as const,
			optional: false as const, nullable: false as const,
			ref: 'Clip'
		}
	}
};

export default define(meta, async (ps, me) => {
	const clips = await Clips.find({
		userId: me.id,
	});

	return await Promise.all(clips.map(x => Clips.pack(x)));
});