mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-07-24 18:04:39 -05:00
14 lines
415 B
TypeScript
14 lines
415 B
TypeScript
import { HttpClient } from '@angular/common/http'
|
|
import { Injectable } from '@angular/core'
|
|
import { CustomField } from 'src/app/data/custom-field'
|
|
import { AbstractPaperlessService } from './abstract-paperless-service'
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class CustomFieldsService extends AbstractPaperlessService<CustomField> {
|
|
constructor(http: HttpClient) {
|
|
super(http, 'custom_fields')
|
|
}
|
|
}
|