Skip to content

Commit

Permalink
Update regex in userstore rest api for user input field to fix bug wh…
Browse files Browse the repository at this point in the history
…en sending ${}
  • Loading branch information
Lakshan-Banneheke committed Jan 29, 2024
1 parent 3324705 commit 478ac3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public class ServerUserStoreService {

private static final String DUMMY_MESSAGE_ID = "DUMMY-MESSAGE-ID";

private static final String EXPRESSION_LANGUAGE_REGEX = "^.*(\\$\\{|#\\{).+}.*$";
private static final String EXPRESSION_LANGUAGE_REGEX = "^.*(\\$\\{|#\\{).*}.*$";

private static final String PASSWORD = "password";

Expand Down

0 comments on commit 478ac3c

Please sign in to comment.