[CST-5729] Implemented functionality to add Links in Response Headers on Item Page

This commit is contained in:
Alban Imami
2023-05-11 18:47:01 +02:00
parent e8ff0fbf36
commit 558f8f51fb
6 changed files with 55 additions and 24 deletions

View File

@@ -16,6 +16,8 @@ import { hasValue } from '../../shared/empty.util';
import { AuthService } from '../../core/auth/auth.service';
import { Location } from '@angular/common';
import { AuthorizationDataService } from '../../core/data/feature-authorization/authorization-data.service';
import { ServerResponseService } from 'src/app/core/services/server-response.service';
import { SignpostingDataService } from 'src/app/core/data/signposting-data.service';
/**
@@ -48,8 +50,10 @@ export class FullItemPageComponent extends ItemPageComponent implements OnInit,
items: ItemDataService,
authService: AuthService,
authorizationService: AuthorizationDataService,
private _location: Location) {
super(route, router, items, authService, authorizationService);
private _location: Location,
responseService: ServerResponseService,
signpostginDataService: SignpostingDataService) {
super(route, router, items, authService, authorizationService, responseService, signpostginDataService);
}
/*** AoT inheritance fix, will hopefully be resolved in the near future **/