-
Notifications
You must be signed in to change notification settings - Fork 137
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Client ID to send_verification_email #162
Conversation
def fields_for_export(fields) | ||
return nil if fields.nil? || fields.empty? | ||
return nil if fields.to_s.empty? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why the change here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Simplification ... I think it was suggested by the formatting tool rubocop
@@ -21,6 +21,7 @@ module HTTPProxy | |||
elsif method == :delete | |||
call(:delete, url(safe_path), timeout, add_headers({params: body})) | |||
elsif method == :post_file | |||
body.merge!(multipart: true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The import method was not working as it was written, which I found out when the tests were finally running (instead of being skipped).
Changes
Auth0::Api::V2::Jobs.send_verification_email
References
Fixes #92
Testing
Failing tests for new feature
Checklist