Skip to content

Commit

Permalink
Wiring up backend
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Nov 15, 2022
1 parent c43e797 commit 34b45c0
Show file tree
Hide file tree
Showing 8 changed files with 325 additions and 109 deletions.
49 changes: 26 additions & 23 deletions backend/src/main/resources/dynamic-registration.schema.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,48 @@
{
"type": "object",
"required": [
"redirectUris"
"redirectUris",
"name"
],
"properties": {
"applicationType": {
"title": "label.application-type",
"description": "tooltip.application-type",
"type": "string"
"name": {
"title": "label.dynamic-registration-name",
"description": "tooltip.dynamic-registration-name",
"type": "string",
"minLength": 1,
"maxLength": 255
},
"redirectUris": {
"title": "label.redirect-uris",
"description": "tooltip.redirect-uris",
"type": "string",
"minLength": 1,
"maxLength": 255
},
"approved": {
"title": "label.approved",
"description": "tooltip.approved",
"type": "boolean"
},
"contacts": {
"title": "label.contacts",
"description": "tooltip.contacts",
"type": "string"
},
"enabled": {
"title": "label.enabled",
"description": "tooltip.enabled",
"type": "boolean"
},
"applicationType": {
"title": "label.application-type",
"description": "tooltip.application-type",
"type": "string"
},
"contacts": {
"title": "label.contacts",
"description": "tooltip.contacts",
"type": "string"
},
"grantType": {
"title": "label.grant-type",
"description": "tooltip.grant-type",
"type": "string",
"widget": "select",
"minLength": 1,
"oneOf": [
{
Expand All @@ -55,23 +69,12 @@
"description": "tooltip.logo-uri",
"type": "string"
},
"name": {
"title": "label.name",
"description": "tooltip.name",
"type": "string"
},
"policyUri": {
"title": "label.policy-uri",
"description": "tooltip.policy-uri",
"type": "string"
},
"redirectUris": {
"title": "label.redirect-uris",
"description": "tooltip.redirect-uris",
"type": "string",
"minLength": 1,
"maxLength": 255
},

"responseTypes": {
"title": "label.response-types",
"description": "tooltip.response-types",
Expand Down
Loading

0 comments on commit 34b45c0

Please sign in to comment.