Skip to content

Commit 2d2054b

Browse files
authored
Merge branch 'master' into sdk-add-updated-enabled-clients-connection-support
2 parents 68c865c + ed4e616 commit 2d2054b

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/main/java/com/auth0/client/mgmt/EmailTemplatesEntity.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ public class EmailTemplatesEntity extends BaseManagementEntity {
2828
public static final String TEMPLATE_CHANGE_PASSWORD = "change_password";
2929
public static final String TEMPLATE_PASSWORD_RESET = "password_reset";
3030
public static final String TEMPLATE_MFA_OOB_CODE = "mfa_oob_code";
31+
public static final String TEMPLATE_VERIFY_EMAIL_BY_CODE = "verify_email_by_code";
32+
public static final String TEMPLATE_RESET_EMAIL_BY_CODE = "reset_email_by_code";
33+
public static final String TEMPLATE_USER_INVITATION = "user_invitation";
3134

3235
EmailTemplatesEntity(Auth0HttpClient client, HttpUrl baseUrl, TokenProvider tokenProvider) {
3336
super(client, baseUrl, tokenProvider);

src/main/java/com/auth0/json/mgmt/organizations/EnabledConnection.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ public void setShowAsButton(Boolean showAsButton) {
101101
/**
102102
* @return whether signup is enabled for this connection.
103103
*/
104+
@JsonProperty("is_signup_enabled")
104105
public Boolean getSignupEnabled() {
105106
return isSignupEnabled;
106107
}
@@ -109,6 +110,7 @@ public Boolean getSignupEnabled() {
109110
* Sets whether signup is enabled for this connection.
110111
* @param signupEnabled {@code true} to enable signup, {@code false} to disable it.
111112
*/
113+
@JsonProperty("is_signup_enabled")
112114
public void setSignupEnabled(Boolean signupEnabled) {
113115
isSignupEnabled = signupEnabled;
114116
}

0 commit comments

Comments
 (0)