summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/following/requests/accept.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/api/endpoints/following/requests/accept.ts')
-rw-r--r--src/server/api/endpoints/following/requests/accept.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/server/api/endpoints/following/requests/accept.ts b/src/server/api/endpoints/following/requests/accept.ts
index 4a0fdb0af9..aa7085c53f 100644
--- a/src/server/api/endpoints/following/requests/accept.ts
+++ b/src/server/api/endpoints/following/requests/accept.ts
@@ -6,11 +6,6 @@ import { ApiError } from '../../../error';
import { getUser } from '../../../common/getters';
export const meta = {
- desc: {
- 'ja-JP': '自分に届いた、指定したフォローリクエストを承認します。',
- 'en-US': 'Accept a follow request.'
- },
-
tags: ['following', 'account'],
requireCredential: true as const,
@@ -20,10 +15,6 @@ export const meta = {
params: {
userId: {
validator: $.type(ID),
- desc: {
- 'ja-JP': '対象のユーザーのID',
- 'en-US': 'Target user ID'
- }
}
},