added google sign-in functionality to the client, with minor model modifications

Этот коммит содержится в:
JoramWilander
2015-08-14 08:43:49 -04:00
родитель e27db2ed63
Коммит b704e9489b
11 изменённых файлов: 137 добавлений и 82 удалений

Просмотреть файл

@@ -92,14 +92,21 @@ module.exports = React.createClass({
var auth_services = JSON.parse(this.props.authServices);
var login_message;
if (auth_services.indexOf("gitlab") >= 0) {
login_message = (
var login_message = [];
if (auth_services.indexOf(Constants.GITLAB_SERVICE) >= 0) {
login_message.push(
<div className="form-group form-group--small">
<span><a href={"/"+teamName+"/login/gitlab"}>{"Log in with GitLab"}</a></span>
</div>
);
}
if (auth_services.indexOf(Constants.GOOGLE_SERVICE) >= 0) {
login_message.push(
<div className="form-group form-group--small">
<span><a href={"/"+teamName+"/login/google"}>{"Log in with Google"}</a></span>
</div>
);
}
return (
<div className="signup-team__container">