feat: add notice for unreviewed annotations, and fix failed tests

This commit is contained in:
rramiachraf 2024-09-18 14:34:20 +01:00
parent c81feb465b
commit 2d4ada55a8
7 changed files with 110 additions and 76 deletions

View file

@ -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"`
}