mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
14 lines
426 B
TypeScript
14 lines
426 B
TypeScript
import { HttpClient } from '@angular/common/http'
|
|
import { Injectable } from '@angular/core'
|
|
import { Correspondent } from 'src/app/data/correspondent'
|
|
import { AbstractNameFilterService } from './abstract-name-filter-service'
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class CorrespondentService extends AbstractNameFilterService<Correspondent> {
|
|
constructor(http: HttpClient) {
|
|
super(http, 'correspondents')
|
|
}
|
|
}
|