Skip to content

Commit 8e1f78d

Browse files
authored
Fix ExtendedUpdateOpts in users pkg (#356)
[IAM] Make `description` as ptr `ExtendedUpdateOpts` in `users` pkg What this PR does / why we need it Fix ExtendedUpdateOpts in users pkg Reviewed-by: Anton Sidelnikov <None>
1 parent d85fa63 commit 8e1f78d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openstack/identity/v3/users/requests.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ type ExtendedUpdateOpts struct {
191191
Enabled *bool `json:"enabled,omitempty"`
192192

193193
// Description is a description of the user.
194-
Description string `json:"description,omitempty"`
194+
Description *string `json:"description,omitempty"`
195195

196196
// Email is the email of the user
197197
Email string `json:"email,omitempty"`

0 commit comments

Comments
 (0)