2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-02-27 03:07:39 +01:00
|
|
|
import endpoints from '../endpoints.js';
|
2019-04-18 14:29:19 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2019-04-18 14:29:19 +02:00
|
|
|
|
|
|
|
tags: ['meta'],
|
|
|
|
|
2021-03-06 14:34:11 +01:00
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
items: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
example: [
|
|
|
|
'admin/abuse-user-reports',
|
|
|
|
'admin/accounts/create',
|
|
|
|
'admin/announcements/create',
|
2021-12-09 15:58:30 +01:00
|
|
|
'...',
|
|
|
|
],
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2019-04-18 14:29:19 +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-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async () => {
|
|
|
|
return endpoints.map(x => x.name);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|