aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorNiall Sheridan <nsheridan@gmail.com>2016-04-20 00:40:58 +0100
committerNiall Sheridan <nsheridan@gmail.com>2016-04-20 00:40:58 +0100
commit3114920c0db2d2d4c5b342243204bc5ed7da9aa9 (patch)
treea3f8a7567be3c70066a338e4c7e33826a86dc820 /server
parent5f9b763adfc2211503f1eb13d8af915f645f95c3 (diff)
dumb tests for the google auth provider
Diffstat (limited to 'server')
-rw-r--r--server/auth/google/google.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/auth/google/google.go b/server/auth/google/google.go
index 9944d58..5580002 100644
--- a/server/auth/google/google.go
+++ b/server/auth/google/google.go
@@ -23,7 +23,7 @@ type Config struct {
domain string
}
-func New(c config.Auth) auth.Provider {
+func New(c *config.Auth) auth.Provider {
return &Config{
config: &oauth2.Config{
ClientID: c.OauthClientID,