Skip to content

Commit

Permalink
feat: Privacy update struct
Browse files Browse the repository at this point in the history
  • Loading branch information
SevereCloud committed Jan 11, 2022
1 parent 45be342 commit 16556dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion object/object.go
Original file line number Diff line number Diff line change
Expand Up @@ -346,9 +346,11 @@ const (
type Privacy struct {
Category PrivacyCategory `json:"category,omitempty"`
Lists struct {
Allowed []int `json:"allowed"`
Allowed []int `json:"allowed"`
Excluded []int `json:"excluded"`
} `json:"lists,omitempty"`
Owners struct {
Allowed []int `json:"allowed"`
Excluded []int `json:"excluded"`
} `json:"owners,omitempty"`
}
Expand Down

0 comments on commit 16556dc

Please sign in to comment.