mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-23 20:13:08 +02:00
アカウントを凍結されていたらAPIにアクセスできないようにした
This commit is contained in:
parent
2db01f3d5c
commit
2bc572b4cc
1 changed files with 4 additions and 0 deletions
|
@ -17,6 +17,10 @@ export default (endpoint: string | Endpoint, user: IUser, app: IApp, data: any,
|
||||||
return rej('SIGNIN_REQUIRED');
|
return rej('SIGNIN_REQUIRED');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (ep.withCredential && user.isSuspended) {
|
||||||
|
return rej('YOUR_ACCOUNT_HAS_BEEN_SUSPENDED');
|
||||||
|
}
|
||||||
|
|
||||||
if (app && ep.kind) {
|
if (app && ep.kind) {
|
||||||
if (!app.permission.some(p => p === ep.kind)) {
|
if (!app.permission.some(p => p === ep.kind)) {
|
||||||
return rej('PERMISSION_DENIED');
|
return rej('PERMISSION_DENIED');
|
||||||
|
|
Loading…
Reference in a new issue