fix lint
This commit is contained in:
		| @@ -12,7 +12,7 @@ export const meta = { | ||||
|  | ||||
| 	limit: { | ||||
| 		duration: ms('1hour'), | ||||
| 		max: 100 | ||||
| 		max: 100, | ||||
| 	}, | ||||
|  | ||||
| 	requireCredential: true as const, | ||||
| @@ -22,34 +22,34 @@ export const meta = { | ||||
| 	params: { | ||||
| 		userId: { | ||||
| 			validator: $.type(ID), | ||||
| 		} | ||||
| 		}, | ||||
| 	}, | ||||
|  | ||||
| 	errors: { | ||||
| 		noSuchUser: { | ||||
| 			message: 'No such user.', | ||||
| 			code: 'NO_SUCH_USER', | ||||
| 			id: '7cc4f851-e2f1-4621-9633-ec9e1d00c01e' | ||||
| 			id: '7cc4f851-e2f1-4621-9633-ec9e1d00c01e', | ||||
| 		}, | ||||
|  | ||||
| 		blockeeIsYourself: { | ||||
| 			message: 'Blockee is yourself.', | ||||
| 			code: 'BLOCKEE_IS_YOURSELF', | ||||
| 			id: '88b19138-f28d-42c0-8499-6a31bbd0fdc6' | ||||
| 			id: '88b19138-f28d-42c0-8499-6a31bbd0fdc6', | ||||
| 		}, | ||||
|  | ||||
| 		alreadyBlocking: { | ||||
| 			message: 'You are already blocking that user.', | ||||
| 			code: 'ALREADY_BLOCKING', | ||||
| 			id: '787fed64-acb9-464a-82eb-afbd745b9614' | ||||
| 			id: '787fed64-acb9-464a-82eb-afbd745b9614', | ||||
| 		}, | ||||
| 	}, | ||||
|  | ||||
| 	res: { | ||||
| 		type: 'object' as const, | ||||
| 		optional: false as const, nullable: false as const, | ||||
| 		ref: 'User' | ||||
| 	} | ||||
| 		ref: 'User', | ||||
| 	}, | ||||
| }; | ||||
|  | ||||
| export default define(meta, async (ps, user) => { | ||||
| @@ -69,7 +69,7 @@ export default define(meta, async (ps, user) => { | ||||
| 	// Check if already blocking | ||||
| 	const exist = await Blockings.findOne({ | ||||
| 		blockerId: blocker.id, | ||||
| 		blockeeId: blockee.id | ||||
| 		blockeeId: blockee.id, | ||||
| 	}); | ||||
|  | ||||
| 	if (exist != null) { | ||||
| @@ -80,10 +80,10 @@ export default define(meta, async (ps, user) => { | ||||
|  | ||||
| 	NoteWatchings.delete({ | ||||
| 		userId: blocker.id, | ||||
| 		noteUserId: blockee.id | ||||
| 		noteUserId: blockee.id, | ||||
| 	}); | ||||
|  | ||||
| 	return await Users.pack(blockee.id, blocker, { | ||||
| 		detail: true | ||||
| 		detail: true, | ||||
| 	}); | ||||
| }); | ||||
|   | ||||
| @@ -12,7 +12,7 @@ export const meta = { | ||||
|  | ||||
| 	limit: { | ||||
| 		duration: ms('1hour'), | ||||
| 		max: 100 | ||||
| 		max: 100, | ||||
| 	}, | ||||
|  | ||||
| 	requireCredential: true as const, | ||||
| @@ -22,26 +22,26 @@ export const meta = { | ||||
| 	params: { | ||||
| 		userId: { | ||||
| 			validator: $.type(ID), | ||||
| 		} | ||||
| 		}, | ||||
| 	}, | ||||
|  | ||||
| 	errors: { | ||||
| 		noSuchUser: { | ||||
| 			message: 'No such user.', | ||||
| 			code: 'NO_SUCH_USER', | ||||
| 			id: '8621d8bf-c358-4303-a066-5ea78610eb3f' | ||||
| 			id: '8621d8bf-c358-4303-a066-5ea78610eb3f', | ||||
| 		}, | ||||
|  | ||||
| 		blockeeIsYourself: { | ||||
| 			message: 'Blockee is yourself.', | ||||
| 			code: 'BLOCKEE_IS_YOURSELF', | ||||
| 			id: '06f6fac6-524b-473c-a354-e97a40ae6eac' | ||||
| 			id: '06f6fac6-524b-473c-a354-e97a40ae6eac', | ||||
| 		}, | ||||
|  | ||||
| 		notBlocking: { | ||||
| 			message: 'You are not blocking that user.', | ||||
| 			code: 'NOT_BLOCKING', | ||||
| 			id: '291b2efa-60c6-45c0-9f6a-045c8f9b02cd' | ||||
| 			id: '291b2efa-60c6-45c0-9f6a-045c8f9b02cd', | ||||
| 		}, | ||||
| 	}, | ||||
|  | ||||
| @@ -69,7 +69,7 @@ export default define(meta, async (ps, user) => { | ||||
| 	// Check not blocking | ||||
| 	const exist = await Blockings.findOne({ | ||||
| 		blockerId: blocker.id, | ||||
| 		blockeeId: blockee.id | ||||
| 		blockeeId: blockee.id, | ||||
| 	}); | ||||
|  | ||||
| 	if (exist == null) { | ||||
| @@ -80,6 +80,6 @@ export default define(meta, async (ps, user) => { | ||||
| 	await deleteBlocking(blocker, blockee); | ||||
|  | ||||
| 	return await Users.pack(blockee.id, blocker, { | ||||
| 		detail: true | ||||
| 		detail: true, | ||||
| 	}); | ||||
| }); | ||||
|   | ||||
| @@ -14,7 +14,7 @@ export const meta = { | ||||
| 	params: { | ||||
| 		limit: { | ||||
| 			validator: $.optional.num.range(1, 100), | ||||
| 			default: 30 | ||||
| 			default: 30, | ||||
| 		}, | ||||
|  | ||||
| 		sinceId: { | ||||
| @@ -33,7 +33,7 @@ export const meta = { | ||||
| 			type: 'object' as const, | ||||
| 			optional: false as const, nullable: false as const, | ||||
| 			ref: 'Blocking', | ||||
| 		} | ||||
| 		}, | ||||
| 	}, | ||||
| }; | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 syuilo
					syuilo