This commit is contained in:
syuilo
2021-12-09 23:58:30 +09:00
parent 0abe2dfee0
commit c69b72e199
573 changed files with 3318 additions and 3318 deletions

View File

@@ -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,
});
});