mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-07-28 18:24:38 -05:00
add comment function
This commit is contained in:

committed by
Michael Shamoon

parent
c2fda245ac
commit
278e9c12e1
8
src-ui/src/app/data/paperless-document-comment.ts
Normal file
8
src-ui/src/app/data/paperless-document-comment.ts
Normal 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
|
||||
}
|
3
src-ui/src/app/data/paperless-environment.ts
Normal file
3
src-ui/src/app/data/paperless-environment.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export interface PaperlessEnvironment {
|
||||
value?: string;
|
||||
}
|
7
src-ui/src/app/data/user-type.ts
Normal file
7
src-ui/src/app/data/user-type.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { ObjectWithId } from './object-with-id'
|
||||
|
||||
export interface CommentUser extends ObjectWithId {
|
||||
username: string
|
||||
firstname: string
|
||||
lastname: string
|
||||
}
|
Reference in New Issue
Block a user