Commit 9f3bee8e authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Add missing omitempty to group description.

parent ad6db4c7
...@@ -982,13 +982,13 @@ type Description struct { ...@@ -982,13 +982,13 @@ type Description struct {
Other []ClientPattern `json:"other,omitempty"` Other []ClientPattern `json:"other,omitempty"`
// The (public) keys used for token authentication. // 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. // 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. // 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 // Codec preferences. If empty, a suitable default is chosen in
// the APIFromNames function. // the APIFromNames function.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment