Commit ca54c89a authored by Michael Lihs's avatar Michael Lihs Committed by Sander van Harmelen

Add support for GET /users?blocked=true #241 (#242)

parent 32211f6a
...@@ -72,6 +72,7 @@ type UserIdentity struct { ...@@ -72,6 +72,7 @@ type UserIdentity struct {
type ListUsersOptions struct { type ListUsersOptions struct {
ListOptions ListOptions
Active *bool `url:"active,omitempty" json:"active,omitempty"` Active *bool `url:"active,omitempty" json:"active,omitempty"`
Blocked *bool `url:"blocked,omitempty" json:"blocked,omitempty"`
Search *string `url:"search,omitempty" json:"search,omitempty"` Search *string `url:"search,omitempty" json:"search,omitempty"`
Username *string `url:"username,omitempty" json:"username,omitempty"` Username *string `url:"username,omitempty" json:"username,omitempty"`
} }
......
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