Cleanup frontend comment service & other code

[ci skip]
This commit is contained in:
Michael Shamoon 2022-08-07 22:05:32 -07:00
parent 1b56ffd0c0
commit 1d2282df9e
9 changed files with 20 additions and 24 deletions

View file

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