Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SDK-4478] Support organization id when resetting a password #333

Merged
merged 2 commits into from
Dec 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions authentication/database/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ type ChangePasswordRequest struct {
Email string `json:"email,omitempty"`
// The name of the database connection configured on your client.
Connection string `json:"connection,omitempty"`
// The organization_id of the Organization associated with the user.
Organization string `json:"organization,omitempty"`
// Extra parameters to be merged into the request body. Values set here will override any existing values.
ExtraParameters map[string]string `json:"-"`
}
Expand Down
Loading