add comment function

This commit is contained in:
tim-vogel
2022-08-07 12:41:30 -07:00
committed by Michael Shamoon
parent c2fda245ac
commit 278e9c12e1
20 changed files with 416 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
import { ObjectWithId } from './object-with-id'
import { CommentUser } from './user-type'
export interface PaperlessDocumentComment extends ObjectWithId {
created?: Date
comment?: string
user?: CommentUser
}

View File

@@ -0,0 +1,3 @@
export interface PaperlessEnvironment {
value?: string;
}

View File

@@ -0,0 +1,7 @@
import { ObjectWithId } from './object-with-id'
export interface CommentUser extends ObjectWithId {
username: string
firstname: string
lastname: string
}