diff options
author | techknowlogick <techknowlogick@gitea.io> | 2019-09-14 06:02:39 -0400 |
---|---|---|
committer | Antoine GIRARD <sapk@users.noreply.github.com> | 2019-09-14 12:02:39 +0200 |
commit | 7a8e299c7c7b4f83b8280ab2b069ddaed9f34d0f (patch) | |
tree | 4faf85c56ea34c5dcbf59f09e3a76ba41194ce94 /models/oauth2.go | |
parent | 107d57a9256cdfbbb4f59665ea08311e14eb59de (diff) | |
download | gitea-7a8e299c7c7b4f83b8280ab2b069ddaed9f34d0f.tar.gz gitea-7a8e299c7c7b4f83b8280ab2b069ddaed9f34d0f.zip |
migrate gplus to google oauth2 provider (#7885)
* migrate gplus to google oauth2 provider. this still provides support for old gplus connections.
* Update models/oauth2.go
Co-Authored-By: Antoine GIRARD <sapk@users.noreply.github.com>
* make vendor
Diffstat (limited to 'models/oauth2.go')
-rw-r--r-- | models/oauth2.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/oauth2.go b/models/oauth2.go index c82c1cbadb..ee3ea4b924 100644 --- a/models/oauth2.go +++ b/models/oauth2.go @@ -40,7 +40,7 @@ var OAuth2Providers = map[string]OAuth2Provider{ ProfileURL: oauth2.GetDefaultProfileURL("gitlab"), }, }, - "gplus": {Name: "gplus", DisplayName: "Google+", Image: "/img/auth/google_plus.png"}, + "gplus": {Name: "gplus", DisplayName: "Google", Image: "/img/auth/google.png"}, "openidConnect": {Name: "openidConnect", DisplayName: "OpenID Connect", Image: "/img/auth/openid_connect.png"}, "twitter": {Name: "twitter", DisplayName: "Twitter", Image: "/img/auth/twitter.png"}, "discord": {Name: "discord", DisplayName: "Discord", Image: "/img/auth/discord.png"}, |