Skip to content

Commit

Permalink
Merge branch 'feature/shibui-2393' of bitbucket.org:unicon/shib-idp-u…
Browse files Browse the repository at this point in the history
…i into feature/shibui-2393-ui
  • Loading branch information
rmathis committed Nov 15, 2022
2 parents 1a41b62 + 56db66e commit 070bdcd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public class DynamicRegistrationRepresentation {
private String idOfOwner;
private String jwks;
private String logoUri;
private String name;
private LocalDateTime modifiedDate;
private String policyUri;
private String redirectUris;
Expand All @@ -45,6 +46,7 @@ public DynamicRegistrationRepresentation(DynamicRegistrationInfo dri) {
idOfOwner = dri.getIdOfOwner();
jwks = dri.getJwks();
logoUri = dri.getLogoUri();
name = dri.getName();
modifiedDate = dri.getModifiedDate();
policyUri = dri.getPolicyUri();
redirectUris = dri.getRedirectUris();
Expand All @@ -69,6 +71,7 @@ public DynamicRegistrationInfo buildDynamicRegistrationInfo() {
// dri.setIdOfOwner(idOfOwner);
dri.setJwks(jwks);
dri.setLogoUri(logoUri);
dri.setName(name);
dri.setPolicyUri(policyUri);
dri.setRedirectUris(redirectUris);
dri.setResourceId(resourceId);
Expand Down Expand Up @@ -98,6 +101,7 @@ public DynamicRegistrationInfo updateExistingWithRepValues(DynamicRegistrationIn
dri.setGrantType(grantType);
dri.setJwks(jwks);
dri.setLogoUri(logoUri);
dri.setName(name);
dri.setPolicyUri(policyUri);
dri.setRedirectUris(redirectUris);
dri.setResourceId(resourceId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public class DynamicRegistrationInfo extends AbstractAuditable implements Ownabl
private String idOfOwner;
private String jwks;
private String logoUri;
private String name;
private String policyUri;
private String redirectUris;
private String resourceId;
Expand Down
5 changes: 5 additions & 0 deletions backend/src/main/resources/dynamic-registration.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@
"description": "tooltip.logo-uri",
"type": "string"
},
"name": {
"title": "label.name",
"description": "tooltip.name",
"type": "string"
},
"policyUri": {
"title": "label.policy-uri",
"description": "tooltip.policy-uri",
Expand Down

0 comments on commit 070bdcd

Please sign in to comment.