mirror of
https://github.com/documize/community.git
synced 2025-07-25 08:09:43 +02:00
refactored document & search codebase to new API
This commit is contained in:
parent
d90b3249c3
commit
65390ab67d
12 changed files with 1288 additions and 35 deletions
|
@ -71,3 +71,16 @@ const (
|
|||
// TypeFeedback records user providing document feedback
|
||||
TypeFeedback Type = 10
|
||||
)
|
||||
|
||||
// DocumentActivity represents an activity taken against a document.
|
||||
type DocumentActivity struct {
|
||||
ID int `json:"id"`
|
||||
OrgID string `json:"orgId"`
|
||||
LabelID string `json:"folderId"`
|
||||
DocumentID string `json:"documentId"`
|
||||
UserID string `json:"userId"`
|
||||
Firstname string `json:"firstname"`
|
||||
Lastname string `json:"lastname"`
|
||||
ActivityType int `json:"activityType"`
|
||||
Created time.Time `json:"created"`
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue