Skip to content

Commit

Permalink
Merged in bug-fix/shibui-2637 (pull request #670)
Browse files Browse the repository at this point in the history
SHIBUI-2637 Fixing access to the dynamic registration (OIDC) feature

Approved-by: Dmitriy Kopylenko
  • Loading branch information
chasegawa committed Jul 25, 2024
2 parents 2797e59 + 759051b commit a6def3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,8 @@ public class ShibUIConfiguration {

private RestTemplate restTemplate;

@Profile("very-dangerous")
@Bean
public RestTemplate dangerousRestTemplate() throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException {
public RestTemplate restTemplate() throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException {
HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() {
public boolean verify(String hostname, SSLSession session) {
return true;
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name=shibui
group=edu.internet2.tier.shibboleth.admin.ui
version=2.0.0
version=2.0.1-SNAPSHOT

### library versions ###
## As of 2-23-23
Expand Down

0 comments on commit a6def3d

Please sign in to comment.