2023-02-16 15:09:41 +01:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2022-09-18 03:27:08 +09:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2023-05-21 18:50:32 +00:00
|
|
|
import { endpoints } from 'misskey-js/built/endpoints.js';
|
2019-04-18 21:29:19 +09:00
|
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: false,
|
2019-04-18 21:29:19 +09:00
|
|
|
|
|
|
|
|
tags: ['meta'],
|
|
|
|
|
|
2021-03-06 22:34:11 +09:00
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'array',
|
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 22:34:11 +09:00
|
|
|
items: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'string',
|
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 22:34:11 +09:00
|
|
|
},
|
|
|
|
|
example: [
|
|
|
|
|
'admin/abuse-user-reports',
|
|
|
|
|
'admin/accounts/create',
|
|
|
|
|
'admin/announcements/create',
|
2021-12-09 23:58:30 +09:00
|
|
|
'...',
|
|
|
|
|
],
|
|
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2019-04-18 21:29:19 +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;
|
|
|
|
|
|
2023-05-21 18:49:44 +00:00
|
|
|
// !!!!!!!!!!!!!!!!!!!!!!!!DONE!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-18 03:27:08 +09:00
|
|
|
@Injectable()
|
2023-05-21 18:49:44 +00:00
|
|
|
export default class extends Endpoint<'endpoints'> {
|
|
|
|
|
name = 'endpoints' as const;
|
2022-09-18 03:27:08 +09:00
|
|
|
constructor(
|
|
|
|
|
) {
|
2023-05-21 18:49:44 +00:00
|
|
|
super(async () => {
|
|
|
|
|
return Object.keys(endpoints);
|
2022-09-18 03:27:08 +09:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|