forked from WISE-Community/WISE-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(Code): Update to WISE API June 2023 (#16)
chore(Login): Use recaptcha V3 (WISE-Community#228) Co-authored-by: Geoffrey Kwan <[email protected]>
- Loading branch information
1 parent
e375387
commit d6cfb30
Showing
3 changed files
with
23 additions
and
18 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
src/main/java/org/wise/portal/presentation/web/exception/RecaptchaVerificationException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.wise.portal.presentation.web.exception; | ||
|
||
import org.springframework.security.core.AuthenticationException; | ||
|
||
public class RecaptchaVerificationException extends AuthenticationException { | ||
private static final long serialVersionUID = 1L; | ||
|
||
public RecaptchaVerificationException(String msg) { | ||
super(msg); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters