summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/api/endpoints/my/apps.ts
blob: 85b75c15df6aa84536f85888c8ea7c32cf1d263b (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import define from '../../define.js';
import { Apps } from '@/models/index.js';

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

	requireCredential: true,

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

export const paramDef = {
	type: 'object',
	properties: {
		limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
		offset: { type: 'integer', default: 0 },
	},
	required: [],
} as const;

// eslint-disable-next-line import/no-default-export
export default define(meta, paramDef, async (ps, user) => {
	const query = {
		userId: user.id,
	};

	const apps = await Apps.find({
		where: query,
		take: ps.limit,
		skip: ps.offset,
	});

	return await Promise.all(apps.map(app => Apps.pack(app, user, {
		detail: true,
	})));
});