Change default oauth client scope to profile

This commit is contained in:
Girish Ramakrishnan
2017-03-20 20:05:22 -07:00
parent eabf27f0c9
commit 9ae8ce3296

View File

@@ -19,7 +19,7 @@ angular.module('Application').controller('TokensController', ['$scope', 'Client'
$scope.clientAdd.error = {};
$scope.clientAdd.name = '';
$scope.clientAdd.scope = '*';
$scope.clientAdd.scope = 'profile';
$scope.clientAdd.redirectURI = '';
$scope.clientAddForm.$setUntouched();