summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/api/endpoints')
-rw-r--r--src/server/api/endpoints/blocking/delete.ts67
1 files changed, 2 insertions, 65 deletions
diff --git a/src/server/api/endpoints/blocking/delete.ts b/src/server/api/endpoints/blocking/delete.ts
index 28776727a5..c69c8b14a7 100644
--- a/src/server/api/endpoints/blocking/delete.ts
+++ b/src/server/api/endpoints/blocking/delete.ts
@@ -48,71 +48,8 @@ export const meta = {
res: {
type: 'object' as const,
optional: false as const, nullable: false as const,
- properties: {
- id: {
- type: 'string' as const,
- optional: false as const, nullable: false as const,
- format: 'id',
- example: 'xxxxxxxxxx',
- },
- name: {
- type: 'string' as const,
- optional: false as const, nullable: true as const
- },
- username: {
- type: 'string' as const,
- optional: false as const, nullable: false as const
- },
- host: {
- type: 'string' as const,
- optional: false as const, nullable: true as const
- },
- avatarUrl: {
- type: 'string' as const,
- optional: false as const, nullable: false as const,
- format: 'url'
- },
- avatarBlurhash: {
- type: 'string' as const,
- optional: false as const, nullable: true as const
- },
- avatarColor: {
- type: 'any' as const,
- optional: false as const, nullable: true as const
- },
- emojis: {
- type: 'array' as const,
- optional: false as const, nullable: false as const,
- items: {
- type: 'object' as const,
- nullable: false as const, optional: false as const,
- properties: {
- name: {
- type: 'string' as const,
- nullable: false as const, optional: false as const
- },
- host: {
- type: 'string' as const,
- nullable: true as const, optional: false as const
- },
- url: {
- type: 'string' as const,
- nullable: false as const, optional: false as const,
- format: 'url'
- },
- aliases: {
- type: 'array' as const,
- nullable: false as const, optional: false as const,
- items: {
- type: 'string' as const,
- nullable: false as const, optional: false as const
- }
- }
- }
- }
- }
- }
- }
+ ref: 'User',
+ },
};
export default define(meta, async (ps, user) => {