mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
Add missing omitempty to group description.
This commit is contained in:
parent
ad6db4c71b
commit
9f3bee8e37
1 changed files with 3 additions and 3 deletions
|
@ -982,13 +982,13 @@ type Description struct {
|
|||
Other []ClientPattern `json:"other,omitempty"`
|
||||
|
||||
// The (public) keys used for token authentication.
|
||||
AuthKeys []map[string]interface{} `json:"authKeys"`
|
||||
AuthKeys []map[string]interface{} `json:"authKeys,omitempty"`
|
||||
|
||||
// The URL of the authentication server, if any.
|
||||
AuthServer string `json:"authServer"`
|
||||
AuthServer string `json:"authServer,omitempty"`
|
||||
|
||||
// The URL of the authentication portal, if any.
|
||||
AuthPortal string `json:"authPortal"`
|
||||
AuthPortal string `json:"authPortal,omitempty"`
|
||||
|
||||
// Codec preferences. If empty, a suitable default is chosen in
|
||||
// the APIFromNames function.
|
||||
|
|
Loading…
Reference in a new issue