diff --git a/openid-connect-server/src/main/webapp/resources/js/scope.js b/openid-connect-server/src/main/webapp/resources/js/scope.js index e47d91b8b..bb4883d24 100644 --- a/openid-connect-server/src/main/webapp/resources/js/scope.js +++ b/openid-connect-server/src/main/webapp/resources/js/scope.js @@ -243,7 +243,9 @@ var SystemScopeFormView = Backbone.View.extend({ description:$('#description textarea').val(), icon:$('#iconDisplay input').val(), defaultScope:$('#defaultScope input').is(':checked'), - allowDynReg:$('#allowDynReg input').is(':checked') + allowDynReg:$('#allowDynReg input').is(':checked'), + structured:$('#structured').is(':checked'), + structuredParamDescription:$('#structuredParamDescription').val() }); if (valid) { diff --git a/openid-connect-server/src/main/webapp/resources/template/scope.html b/openid-connect-server/src/main/webapp/resources/template/scope.html index 2fcbdb42f..296b7d437 100644 --- a/openid-connect-server/src/main/webapp/resources/template/scope.html +++ b/openid-connect-server/src/main/webapp/resources/template/scope.html @@ -142,13 +142,17 @@ -
Is the scope structured with structured values like base:extension
?
Human-readable description of the structured parameter
+