2023-01-13 05:40:33 +01:00
|
|
|
import define from "../define.js";
|
|
|
|
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
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
tags: ["meta"],
|
2019-04-18 14:29:19 +02:00
|
|
|
|
2021-03-06 14:34:11 +01:00
|
|
|
res: {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "array",
|
|
|
|
optional: false,
|
|
|
|
nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
items: {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "string",
|
|
|
|
optional: false,
|
|
|
|
nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
example: [
|
2023-01-13 05:40:33 +01:00
|
|
|
"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 = {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "object",
|
2022-02-19 06:05:32 +01:00
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export default define(meta, paramDef, async () => {
|
2023-01-13 05:40:33 +01:00
|
|
|
return endpoints.map((x) => x.name);
|
2019-04-18 14:29:19 +02:00
|
|
|
});
|