Merge frontend user model

This commit is contained in:
Michael Shamoon
2022-11-13 21:31:46 -08:00
parent fdaf9e9b46
commit 10f36870e6
6 changed files with 16 additions and 23 deletions

View File

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

View File

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