mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
feat: add notice for unreviewed annotations, and fix failed tests
This commit is contained in:
parent
c81feb465b
commit
2d4ada55a8
7 changed files with 110 additions and 76 deletions
|
@ -3,13 +3,15 @@ package data
|
|||
type AnnotationsResponse struct {
|
||||
Response struct {
|
||||
Referent struct {
|
||||
Annotations []struct {
|
||||
Body Annotation `json:"body"`
|
||||
} `json:"annotations"`
|
||||
Annotations []Annotation `json:"annotations"`
|
||||
} `json:"referent"`
|
||||
} `json:"response"`
|
||||
}
|
||||
|
||||
type Annotation struct {
|
||||
HTML string `json:"html"`
|
||||
Body struct {
|
||||
HTML string `json:"html"`
|
||||
} `json:"body"`
|
||||
State string `json:"state"`
|
||||
Verified bool `json:"verified"`
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue