continued refactoring

This commit is contained in:
lotte
2019-04-26 16:40:49 +02:00
parent 6438c65381
commit af291845ec
30 changed files with 71 additions and 91 deletions

View File

@@ -3,9 +3,10 @@ import { AuthTokenInfo } from './auth-token-info.model';
import { EPerson } from '../../eperson/models/eperson.model';
import { RemoteData } from '../../data/remote-data';
import { Observable } from 'rxjs';
import { CacheableObject } from '../../cache/object-cache.reducer';
import { CacheableObject, TypedObject } from '../../cache/object-cache.reducer';
import { ResourceType } from '../../shared/resource-type';
export class AuthStatus implements CacheableObject {
export class AuthStatus implements CacheableObject, TypedObject {
id: string;
@@ -20,4 +21,7 @@ export class AuthStatus implements CacheableObject {
token?: AuthTokenInfo;
self: string;
type: ResourceType;
}