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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #LR-676 feat: User Delete #1231

Merged
merged 1 commit into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ public class OtpRequestValidator extends BaseRequestValidator {
Arrays.asList(
JsonKey.RESET_PASSWORD_TEMPLATE_ID,
JsonKey.WARD_LOGIN_OTP_TEMPLATE_ID,
JsonKey.CONTACT_UPDATE_TEMPLATE_ID);
JsonKey.CONTACT_UPDATE_TEMPLATE_ID,
JsonKey.OTP_DELETE_USER_EMAIL_TEMPLATE);

public void validateGenerateOtpRequest(Request otpRequest) {
commonValidation(otpRequest, false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ public final class JsonKey {
public static final String OTP_EMAIL_RESET_PASSWORD_TEMPLATE = "otpEmailResetPasswordTemplate";
public static final String OTP_PHONE_RESET_PASSWORD_TEMPLATE = "otpPhoneResetPasswordTemplate";
public static final String VERIFY_PHONE_OTP_TEMPLATE = "verifyPhoneOtpTemplate";
public static final String OTP_DELETE_USER_EMAIL_TEMPLATE = "otpEmailDeleteUserTemplate";
public static final String PARAMS = "params";
public static final String PASSWORD = "password";

Expand Down Expand Up @@ -649,7 +650,7 @@ public final class JsonKey {
public static final String JOB = "job";
public static final String USER_PRIVATE_FIELDS = "userPrivateFields";

//Release 5.4.0 LR-102
// Release 5.4.0 LR-102
public static final String SUNBIRD_KEYSPACE = "sunbird_keyspace";
public static final String ES_LOCATION_INDEX = "es_location_index";
public static final String ES_USER_FEED_INDEX = "es_user_feed_index";
Expand Down