mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-17 12:06:55 +01:00
editable saved views
This commit is contained in:
parent
67d03c11b9
commit
ff71b04848
5 changed files with 84 additions and 27 deletions
|
|
@ -92,4 +92,10 @@ export abstract class AbstractPaperlessService<T extends ObjectWithId> {
|
|||
this._listAll = null
|
||||
return this.http.put<T>(this.getResourceUrl(o.id), o)
|
||||
}
|
||||
}
|
||||
|
||||
patch(o: T): Observable<T> {
|
||||
this._listAll = null
|
||||
return this.http.patch<T>(this.getResourceUrl(o.id), o)
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue