-
Notifications
You must be signed in to change notification settings - Fork 14
[ENG-9049] Update CAS FE to match angular OSF #94
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
5af4c53
[ENG-8792] Force CAS to throw exceptions and display error pages (#87)
cslzchen eeacafe
[ENG-8754] Force throw a few HTTP errors for testing purpose (#90)
cslzchen c6bc558
[ENG-8556] Update CAS pages to match Angular update: header, footer a…
futa-ikeda 9213041
Remove OSF Collections URL from cas.properties (#91)
cslzchen 23e6541
[ENG-8927] Add dev mode for forcing errors/exceptions (#93)
cslzchen f5beae8
[ENG-8791] Inserting CasProperties into Spring Dispatcher and Improve…
cslzchen bfd81ed
[ENG-8787] Username/password and 2FA login page (#97)
futa-ikeda 826aa2a
[ENG-8789] [ENG-8790] [ENG-8791] Exception Page rework (#95)
cslzchen 0fdf239
[ENG-8788][ENG-8786] Institutions page and TOS page redesign (#99)
futa-ikeda 7fe3cf2
[ENG-8793] [ENG-8785] [ENG-8793] Remove branded login + Update no ser…
cslzchen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
34 changes: 34 additions & 0 deletions
34
src/main/java/io/cos/cas/osf/configuration/model/DevModeProperties.java
This file contains hidden or 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,34 @@ | ||
| package io.cos.cas.osf.configuration.model; | ||
|
|
||
| import lombok.Getter; | ||
| import lombok.Setter; | ||
| import lombok.experimental.Accessors; | ||
|
|
||
| import java.io.Serializable; | ||
|
|
||
| /** | ||
| * This is {@link DevModeProperties}. | ||
| * | ||
| * @author Longze Chen | ||
| * @since 25.1.0 | ||
| */ | ||
| @Getter | ||
| @Setter | ||
| @Accessors(chain = true) | ||
| public class DevModeProperties implements Serializable { | ||
|
|
||
| /** | ||
| * Serialization metadata. | ||
| */ | ||
| private static final long serialVersionUID = -1725182183570276203L; | ||
|
|
||
| /** | ||
| * Allow CAS to force throw authentication exceptions and to render respective error pages for testing purpose. | ||
| */ | ||
| private boolean allowForceAuthnException = Boolean.FALSE; | ||
|
|
||
| /** | ||
| * Allow CAS to force http errors which have built-in rendering template for rendering and testing. | ||
| */ | ||
| private boolean allowForceHttpError = Boolean.FALSE; | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.