mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
21 lines
631 B
TypeScript
21 lines
631 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 SubmissionFormsConfigService extends ConfigService {
|
|
protected linkPath = 'submissionforms';
|
|
protected browseEndpoint = '';
|
|
|
|
constructor(
|
|
protected responseCache: ResponseCacheService,
|
|
protected requestService: RequestService,
|
|
protected halService: HALEndpointService) {
|
|
super();
|
|
}
|
|
|
|
}
|