GUACAMOLE-197: Correct comments on controller js files.

This commit is contained in:
Nick Couchman
2017-03-21 22:17:55 -04:00
committed by Nick Couchman
parent 3a5c43b94e
commit 773f2da9ce
2 changed files with 5 additions and 6 deletions

View File

@@ -18,9 +18,8 @@
*/ */
/** /**
* Controller for the "GUAC_RADIUS_CHALLENGE_RESPONSE" field which uses the DuoWeb * Controller for the "GUAC_RADIUS_CHALLENGE_RESPONSE" field which
* API to prompt the user for additional credentials, ultimately receiving a * passes the RADIUS server challenge to the user and takes the response.
* signed response from the Duo service.
*/ */
angular.module('guacRadius').controller('radiusResponseController', ['$scope', '$element', angular.module('guacRadius').controller('radiusResponseController', ['$scope', '$element',
function radiusResponseController($scope, $element) { function radiusResponseController($scope, $element) {

View File

@@ -18,9 +18,9 @@
*/ */
/** /**
* Controller for the "GUAC_RADIUS_CHALLENGE_RESPONSE" field which uses the DuoWeb * Controller for the "GUAC_RADIUS_STATE" field which is used to pass
* API to prompt the user for additional credentials, ultimately receiving a * the RADIUS server state to maintain the session with the RADIUS
* signed response from the Duo service. * server.
*/ */
angular.module('guacRadius').controller('radiusStateController', ['$scope', '$element', angular.module('guacRadius').controller('radiusStateController', ['$scope', '$element',
function radiusStateController($scope, $element) { function radiusStateController($scope, $element) {