Minor fix: resolved a scope variable in services.js and a typo.

This commit is contained in:
girirajsharma 2015-06-04 14:35:48 +05:30
parent ce7de3b576
commit 90b15a070c
2 changed files with 2 additions and 2 deletions

View file

@ -559,7 +559,7 @@ function roleControl($scope, realm, role, roles, clients,
$scope.realmMappings.push(role);
}
}
$scope.selectRealmRoles = [];
$scope.selectedRealmRoles = [];
});
};

View file

@ -69,7 +69,7 @@ public class LinkedInIdentityProvider extends AbstractOAuth2IdentityProvider imp
return user;
} catch (Exception e) {
throw new IdentityBrokerException("Could not obtain user profile from github.", e);
throw new IdentityBrokerException("Could not obtain user profile from linkedIn.", e);
}
}