summaryrefslogtreecommitdiffstats
path: root/web/react
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-08-28 10:02:45 -0400
committerJoramWilander <jwawilander@gmail.com>2015-08-28 10:02:45 -0400
commit4ea9635b502ed41f541ae27713f7736fdeda0ce7 (patch)
treed91f232b7d26b60f41320b4b172091182315806d /web/react
parent75af5d4536cc414d171c2fe6dca78e455eb18b37 (diff)
downloadchat-4ea9635b502ed41f541ae27713f7736fdeda0ce7.tar.gz
chat-4ea9635b502ed41f541ae27713f7736fdeda0ce7.tar.bz2
chat-4ea9635b502ed41f541ae27713f7736fdeda0ce7.zip
Remove Google as a SSO service.
Diffstat (limited to 'web/react')
-rw-r--r--web/react/components/login.jsx12
-rw-r--r--web/react/components/signup_user_complete.jsx9
-rw-r--r--web/react/components/team_signup_choose_auth.jsx18
-rw-r--r--web/react/components/team_signup_with_sso.jsx12
-rw-r--r--web/react/utils/constants.jsx1
5 files changed, 0 insertions, 52 deletions
diff --git a/web/react/components/login.jsx b/web/react/components/login.jsx
index 489ff6960..0f3aa42db 100644
--- a/web/react/components/login.jsx
+++ b/web/react/components/login.jsx
@@ -110,18 +110,6 @@ export default class Login extends React.Component {
);
}
- if (authServices.indexOf(Constants.GOOGLE_SERVICE) !== -1) {
- loginMessage.push(
- <a
- className='btn btn-custom-login google'
- href={'/' + teamName + '/login/google'}
- >
- <span className='icon' />
- <span>with Google Apps</span>
- </a>
- );
- }
-
var errorClass = '';
if (serverError) {
errorClass = ' has-error';
diff --git a/web/react/components/signup_user_complete.jsx b/web/react/components/signup_user_complete.jsx
index e5c602c16..2080cc191 100644
--- a/web/react/components/signup_user_complete.jsx
+++ b/web/react/components/signup_user_complete.jsx
@@ -162,15 +162,6 @@ module.exports = React.createClass({
);
}
- if (authServices.indexOf(Constants.GOOGLE_SERVICE) >= 0) {
- signupMessage.push(
- <a className='btn btn-custom-login google' href={'/' + this.props.teamName + '/signup/google' + window.location.search}>
- <span className='icon' />
- <span>with Google</span>
- </a>
- );
- }
-
var emailSignup;
if (authServices.indexOf(Constants.EMAIL_SERVICE) !== -1) {
emailSignup = (
diff --git a/web/react/components/team_signup_choose_auth.jsx b/web/react/components/team_signup_choose_auth.jsx
index 2d35785c2..92ade5d24 100644
--- a/web/react/components/team_signup_choose_auth.jsx
+++ b/web/react/components/team_signup_choose_auth.jsx
@@ -28,24 +28,6 @@ export default class ChooseAuthPage extends React.Component {
);
}
- if (this.props.services.indexOf(Constants.GOOGLE_SERVICE) !== -1) {
- buttons.push(
- <a
- className='btn btn-custom-login google btn-full'
- href='#'
- onClick={
- function clickGoogle(e) {
- e.preventDefault();
- this.props.updatePage('service', Constants.GOOGLE_SERVICE);
- }.bind(this)
- }
- >
- <span className='icon' />
- <span>Create new {strings.Team} with Google Apps Account</span>
- </a>
- );
- }
-
if (this.props.services.indexOf(Constants.EMAIL_SERVICE) !== -1) {
buttons.push(
<a
diff --git a/web/react/components/team_signup_with_sso.jsx b/web/react/components/team_signup_with_sso.jsx
index 57996d7cc..6cb62efc7 100644
--- a/web/react/components/team_signup_with_sso.jsx
+++ b/web/react/components/team_signup_with_sso.jsx
@@ -86,18 +86,6 @@ export default class SSOSignUpPage extends React.Component {
<span>Create {strings.Team} with GitLab Account</span>
</a>
);
- } else if (this.props.service === Constants.GOOGLE_SERVICE) {
- button = (
- <a
- className='btn btn-custom-login google btn-full'
- href='#'
- onClick={this.handleSubmit}
- disabled={disabled}
- >
- <span className='icon'/>
- <span>Create {strings.Team} with Google Apps Account</span>
- </a>
- );
}
return (
diff --git a/web/react/utils/constants.jsx b/web/react/utils/constants.jsx
index 6678790e2..8721ced7c 100644
--- a/web/react/utils/constants.jsx
+++ b/web/react/utils/constants.jsx
@@ -60,7 +60,6 @@ module.exports = {
DEFAULT_CHANNEL: 'town-square',
OFFTOPIC_CHANNEL: 'off-topic',
GITLAB_SERVICE: 'gitlab',
- GOOGLE_SERVICE: 'google',
EMAIL_SERVICE: 'email',
POST_CHUNK_SIZE: 60,
MAX_POST_CHUNKS: 3,