Added logs for server debug

This commit is contained in:
Julius Gruber
2019-06-27 15:19:30 +02:00
parent 7c243623c8
commit 71f281516a
5 changed files with 11 additions and 44 deletions

View File

@@ -10,7 +10,7 @@ import {AuthTokenInfo} from './models/auth-token-info.model';
export const AuthActionTypes = {
AUTHENTICATE: type('dspace/auth/AUTHENTICATE'),
SHIBB_LOGIN: type('dspace/auth/SHIBB_LOGIN'),
GET_JWT_AFTER_SHIBB_LOGIN: type('dspace/auth/GET_JWT_AFTER_SHIBB_LOGIN'),
AUTHENTICATE_ERROR: type('dspace/auth/AUTHENTICATE_ERROR'),
AUTHENTICATE_SUCCESS: type('dspace/auth/AUTHENTICATE_SUCCESS'),
AUTHENTICATED: type('dspace/auth/AUTHENTICATED'),
@@ -62,7 +62,7 @@ export class AuthenticateAction implements Action {
* @implements {Action}
*/
export class GetJWTafterShibbLoginAction implements Action {
public type: string = AuthActionTypes.SHIBB_LOGIN;
public type: string = AuthActionTypes.GET_JWT_AFTER_SHIBB_LOGIN;
}
/**