feat(login): invert naming for dissallow user pass login

This commit is contained in:
bergquist
2016-06-25 16:30:41 +02:00
parent 092b6517dc
commit 690a74c6b7
5 changed files with 17 additions and 14 deletions

View File

@@ -18,7 +18,7 @@ function (angular, coreModule, config) {
$scope.googleAuthEnabled = config.googleAuthEnabled;
$scope.githubAuthEnabled = config.githubAuthEnabled;
$scope.oauthEnabled = config.githubAuthEnabled || config.googleAuthEnabled;
$scope.oauthOnly = config.oauthOnly;
$scope.allowUserPassLogin = config.allowUserPassLogin;
$scope.disableUserSignUp = config.disableUserSignUp;
$scope.loginHint = config.loginHint;