mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-04 17:58:06 +09:00
[API] Include detailed user information of blocking API responses
This commit is contained in:
parent
c7e8c02dca
commit
21e5f637d6
@ -71,5 +71,7 @@ export default (params: any, user: ILocalUser) => new Promise(async (res, rej) =
|
||||
await create(blocker, blockee);
|
||||
|
||||
// Send response
|
||||
res(await pack(blockee._id, user));
|
||||
res(await pack(blockee._id, user, {
|
||||
detail: true
|
||||
}));
|
||||
});
|
||||
|
@ -71,5 +71,7 @@ export default (params: any, user: ILocalUser) => new Promise(async (res, rej) =
|
||||
await deleteBlocking(blocker, blockee);
|
||||
|
||||
// Send response
|
||||
res(await pack(blockee._id, user));
|
||||
res(await pack(blockee._id, user, {
|
||||
detail: true
|
||||
}));
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user