mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 13:03:04 +00:00
21 lines
666 B
TypeScript
21 lines
666 B
TypeScript
import { Injectable } from '@angular/core';
|
|
|
|
import { ConfigService } from './config.service';
|
|
import { ResponseCacheService } from '../cache/response-cache.service';
|
|
import { RequestService } from '../data/request.service';
|
|
import { HALEndpointService } from '../shared/hal-endpoint.service';
|
|
|
|
@Injectable()
|
|
export class SubmissionDefinitionsConfigService extends ConfigService {
|
|
protected linkPath = 'submissiondefinitions';
|
|
protected browseEndpoint = 'search/findByCollection';
|
|
|
|
constructor(
|
|
protected responseCache: ResponseCacheService,
|
|
protected requestService: RequestService,
|
|
protected halService: HALEndpointService) {
|
|
super();
|
|
}
|
|
|
|
}
|