mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-07-30 18:27:45 -05:00
16 lines
459 B
TypeScript
16 lines
459 B
TypeScript
import { HttpClient } from '@angular/common/http';
|
|
import { Injectable } from '@angular/core';
|
|
import { PaperlessCorrespondent } from 'src/app/data/paperless-correspondent';
|
|
import { AbstractNameFilterService } from './abstract-name-filter-service';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class CorrespondentService extends AbstractNameFilterService<PaperlessCorrespondent> {
|
|
|
|
constructor(http: HttpClient) {
|
|
super(http, 'correspondents')
|
|
}
|
|
|
|
}
|