diff options
author | Niall Sheridan <nsheridan@gmail.com> | 2016-04-20 00:40:58 +0100 |
---|---|---|
committer | Niall Sheridan <nsheridan@gmail.com> | 2016-04-20 00:40:58 +0100 |
commit | 3114920c0db2d2d4c5b342243204bc5ed7da9aa9 (patch) | |
tree | a3f8a7567be3c70066a338e4c7e33826a86dc820 /server | |
parent | 5f9b763adfc2211503f1eb13d8af915f645f95c3 (diff) |
dumb tests for the google auth provider
Diffstat (limited to 'server')
-rw-r--r-- | server/auth/google/google.go | 2 |
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, |