Better error code
This commit is contained in:
parent
f6b2f76bbf
commit
64f89ba13e
|
@ -18,7 +18,7 @@ export default (endpoint: string, user: IUser, app: IApp, data: any, file?: any)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ep.meta.requireCredential && user == null) {
|
if (ep.meta.requireCredential && user == null) {
|
||||||
return rej('SIGNIN_REQUIRED');
|
return rej('CREDENTIAL_REQUIRED');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ep.meta.requireCredential && user.isSuspended) {
|
if (ep.meta.requireCredential && user.isSuspended) {
|
||||||
|
|
Loading…
Reference in New Issue