removed resolved TODOs. Fixed by the resolution of issue #345.

pull/419/merge
William Kim 2013-07-15 14:53:40 -04:00
parent 0d882faeca
commit 17a96ca122
1 changed files with 2 additions and 2 deletions

View File

@ -462,7 +462,7 @@ var ClientFormView = Backbone.View.extend({
accessTokenValiditySeconds: accessTokenValiditySeconds, accessTokenValiditySeconds: accessTokenValiditySeconds,
refreshTokenValiditySeconds: refreshTokenValiditySeconds, refreshTokenValiditySeconds: refreshTokenValiditySeconds,
idTokenValiditySeconds: idTokenValiditySeconds, idTokenValiditySeconds: idTokenValiditySeconds,
allowRefresh: $('#allowRefresh').is(':checked'), // TODO: why are these two checkboxes different? allowRefresh: $('#allowRefresh').is(':checked'),
allowIntrospection: $('#allowIntrospection input').is(':checked'), // <-- And here? --^ allowIntrospection: $('#allowIntrospection input').is(':checked'), // <-- And here? --^
scope: scopes, scope: scopes,
@ -478,7 +478,7 @@ var ClientFormView = Backbone.View.extend({
sectorIdentifierUri: $('#sectorIdentifierUri input').val(), sectorIdentifierUri: $('#sectorIdentifierUri input').val(),
initiateLoginUri: $('#initiateLoginUri input').val(), initiateLoginUri: $('#initiateLoginUri input').val(),
postLogoutRedirectUri: $('#postLogoutRedirectUri input').val(), postLogoutRedirectUri: $('#postLogoutRedirectUri input').val(),
reuseRefreshToken: $('#reuseRefreshToken').is(':checked'), // TODO: another funny checkbox reuseRefreshToken: $('#reuseRefreshToken').is(':checked'),
requireAuthTime: $('#requireAuthTime input').is(':checked'), requireAuthTime: $('#requireAuthTime input').is(':checked'),
defaultMaxAge: parseInt($('#defaultMaxAge input').val()), defaultMaxAge: parseInt($('#defaultMaxAge input').val()),
contacts: this.contactsCollection.pluck('item'), contacts: this.contactsCollection.pluck('item'),