application type

pull/306/merge
Justin Richer 2013-03-05 11:50:47 -05:00
parent e7282d53fe
commit 9244d6413c
2 changed files with 16 additions and 1 deletions

View File

@ -364,9 +364,12 @@ var ClientFormView = Backbone.View.extend({
allowRefresh: $('#allowRefresh').is(':checked'), // TODO: why are these two checkboxes different?
allowIntrospection: $('#allowIntrospection input').is(':checked'), // <-- And here? --^
scope: scopes,
// TODO: items below this line are untested
tosUri: $('#tosUri input').val(),
policyUri: $('#policyUri input').val(),
clientUri: $('#clientUri input').val(),
applicationType: $('#applicationType input').filter(':checked').val(),
@ -375,7 +378,6 @@ var ClientFormView = Backbone.View.extend({
tokenEndpointAuthMethod: $('#tokenEndpointAuthMethod input').val(), // TODO: this might need to be something different for a single-select?
responseTypes: responseTypes, // TODO: need a preprocessor?
jwksUri: $('#jwksUri input').val(),
applicationType: applicationType, // TODO: need a preprocessor?
sectorIdentifierUri: $('#sectorIdentifierUri input').val(),
subjectType: subjectType, // TODO: need a preprocessor?
requestObjectSigningAlg: requestObjectSigningAlg, // TODO: need a preprocessor for all the JOSE stuff:

View File

@ -151,6 +151,19 @@
</div>
</div>
<div class="control-group" id="applicationType">
<label class="control-label">Application Type</label>
<div class="controls">
<label class="radio inline">
<input type="radio" name="applicationType" value="NATIVE" <%=applicationType == 'NATIVE' ? 'checked' : ''%> Native
</label>
<label class="radio inline">
<input type="radio" name="applicationType" value="WEB" <%=applicationType == 'WEB' ? 'checked' : ''%> Native
</label>
</div>
</div>