mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-02 00:38:08 +09:00
アカウントを凍結されていたらAPIにアクセスできないようにした
This commit is contained in:
parent
5e4b72577a
commit
00b833644b
@ -17,6 +17,10 @@ export default (endpoint: string | Endpoint, user: IUser, app: IApp, data: any,
|
||||
return rej('SIGNIN_REQUIRED');
|
||||
}
|
||||
|
||||
if (ep.withCredential && user.isSuspended) {
|
||||
return rej('YOUR_ACCOUNT_HAS_BEEN_SUSPENDED');
|
||||
}
|
||||
|
||||
if (app && ep.kind) {
|
||||
if (!app.permission.some(p => p === ep.kind)) {
|
||||
return rej('PERMISSION_DENIED');
|
||||
|
Loading…
Reference in New Issue
Block a user