update post_save signal receiver

This commit is contained in:
Michael Shamoon
2022-05-23 01:52:46 -07:00
parent 0ae6da20a9
commit 90cd6950b2
6 changed files with 39 additions and 39 deletions

View File

@@ -0,0 +1,11 @@
import { ObjectWithId } from './object-with-id'
export interface PaperlessTask extends ObjectWithId {
acknowledged: boolean
task_id: string
name: string
created: Date
}