From a65eb502d2a1d54e5ed3594a11d0aad3bdc3de89 Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Tue, 8 Jun 2021 14:26:52 +0900
Subject: [PATCH] fix api response definition

---
 src/server/api/endpoints/blocking/delete.ts | 67 +--------------------
 1 file 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) => {