Fix: handle document notes user format api change (#5751)

This commit is contained in:
shamoon 2024-02-13 09:25:35 -08:00 committed by GitHub
parent 907b6d1294
commit d83bbdc50b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 41 additions and 14 deletions

View file

@ -1,7 +1,8 @@
import { ObjectWithId } from './object-with-id'
import { User } from './user'
export interface DocumentNote extends ObjectWithId {
created?: Date
note?: string
user?: number // User
user?: User
}