mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
32 lines
970 B
TypeScript
32 lines
970 B
TypeScript
import {
|
|
Component,
|
|
Inject,
|
|
} from '@angular/core';
|
|
import { RouterLink } from '@angular/router';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
import { SearchConfigurationService } from '../../../../core/shared/search/search-configuration.service';
|
|
import { SEARCH_CONFIG_SERVICE } from '../../../../my-dspace-page/my-dspace-configuration.service';
|
|
import { AdminNotifyLogsResultComponent } from '../admin-notify-logs-result/admin-notify-logs-result.component';
|
|
|
|
@Component({
|
|
selector: 'ds-admin-notify-incoming',
|
|
templateUrl: './admin-notify-incoming.component.html',
|
|
providers: [
|
|
{
|
|
provide: SEARCH_CONFIG_SERVICE,
|
|
useClass: SearchConfigurationService,
|
|
},
|
|
],
|
|
standalone: true,
|
|
imports: [
|
|
AdminNotifyLogsResultComponent,
|
|
RouterLink,
|
|
TranslateModule,
|
|
],
|
|
})
|
|
export class AdminNotifyIncomingComponent {
|
|
constructor(@Inject(SEARCH_CONFIG_SERVICE) public searchConfigService: SearchConfigurationService) {
|
|
}
|
|
}
|