Better error code

This commit is contained in:
syuilo 2018-11-06 01:57:31 +09:00
parent 5f2e115cbf
commit 260c84f520

View File

@ -18,7 +18,7 @@ export default (endpoint: string, user: IUser, app: IApp, data: any, file?: any)
}
if (ep.meta.requireCredential && user == null) {
return rej('SIGNIN_REQUIRED');
return rej('CREDENTIAL_REQUIRED');
}
if (ep.meta.requireCredential && user.isSuspended) {