mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
22 lines
713 B
TypeScript
22 lines
713 B
TypeScript
import { Inject, Injectable } from '@angular/core';
|
|
|
|
import { ConfigService } from './config.service';
|
|
import { ResponseCacheService } from '../cache/response-cache.service';
|
|
import { RequestService } from '../data/request.service';
|
|
import { GLOBAL_CONFIG } from '../../../config';
|
|
import { GlobalConfig } from '../../../config/global-config.interface';
|
|
|
|
@Injectable()
|
|
export class SubmissionSectionsConfigService extends ConfigService {
|
|
protected linkName = 'submissionsections';
|
|
protected browseEndpoint = '';
|
|
|
|
constructor(
|
|
protected responseCache: ResponseCacheService,
|
|
protected requestService: RequestService,
|
|
@Inject(GLOBAL_CONFIG) protected EnvConfig: GlobalConfig) {
|
|
super();
|
|
}
|
|
|
|
}
|