@@ -19,6 +19,7 @@ import { ServerResponseService } from '../../core/services/server-response.servi
1919import { SignpostingDataService } from '../../core/data/signposting-data.service' ;
2020import { LinkHeadService } from '../../core/services/link-head.service' ;
2121import { APP_CONFIG , AppConfig } from '../../../config/app-config.interface' ;
22+ import { AuthService } from "../../core/auth/auth.service" ;
2223
2324/**
2425 * This component renders a full item page.
@@ -53,6 +54,7 @@ export class FullItemPageComponent extends ItemPageComponent implements OnInit,
5354 protected route : ActivatedRoute ,
5455 protected router : Router ,
5556 protected items : ItemDataService ,
57+ protected authService : AuthService ,
5658 protected authorizationService : AuthorizationDataService ,
5759 protected _location : Location ,
5860 protected responseService : ServerResponseService ,
@@ -61,7 +63,7 @@ export class FullItemPageComponent extends ItemPageComponent implements OnInit,
6163 @Inject ( PLATFORM_ID ) protected platformId : string ,
6264 @Inject ( APP_CONFIG ) private appConfig : AppConfig ,
6365 ) {
64- super ( route , router , items , authorizationService , responseService , signpostingDataService , linkHeadService , platformId ) ;
66+ super ( route , router , items , authService , authorizationService , responseService , signpostingDataService , linkHeadService , platformId ) ;
6567 }
6668
6769 /*** AoT inheritance fix, will hopefully be resolved in the near future **/
0 commit comments