mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
22 lines
644 B
TypeScript
22 lines
644 B
TypeScript
import { HttpClient } from '@angular/common/http'
|
|
import { Injectable } from '@angular/core'
|
|
import { Observable } from 'rxjs'
|
|
import { StoragePath } from 'src/app/data/storage-path'
|
|
import { AbstractNameFilterService } from './abstract-name-filter-service'
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class StoragePathService extends AbstractNameFilterService<StoragePath> {
|
|
constructor(http: HttpClient) {
|
|
super(http, 'storage_paths')
|
|
}
|
|
|
|
public testPath(path: string, documentID: number): Observable<any> {
|
|
return this.http.post<string>(`${this.getResourceUrl()}test/`, {
|
|
path,
|
|
document: documentID,
|
|
})
|
|
}
|
|
}
|