diff options
author | Niall Sheridan <nsheridan@gmail.com> | 2017-02-11 20:20:35 +0000 |
---|---|---|
committer | Niall Sheridan <nsheridan@gmail.com> | 2017-02-11 20:20:35 +0000 |
commit | 9c344a0a95c44ef9cebade7b8a65ac160d9eb900 (patch) | |
tree | aa3782547656b26a55527295c78aa0b8621f8676 /server/auth/testprovider | |
parent | 376b8f670a9c80e8ae69581a354cb989571c44c2 (diff) |
Revert "Remove the oauth_callback_url config option"
Diffstat (limited to 'server/auth/testprovider')
-rw-r--r-- | server/auth/testprovider/testprovider.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/auth/testprovider/testprovider.go b/server/auth/testprovider/testprovider.go index 0bc2397..e30b04a 100644 --- a/server/auth/testprovider/testprovider.go +++ b/server/auth/testprovider/testprovider.go @@ -1,7 +1,6 @@ package testprovider import ( - "net/http" "time" "github.com/nsheridan/cashier/server/auth" @@ -39,7 +38,7 @@ func (c *Config) Revoke(token *oauth2.Token) error { } // StartSession retrieves an authentication endpoint. -func (c *Config) StartSession(state string, r *http.Request) *auth.Session { +func (c *Config) StartSession(state string) *auth.Session { return &auth.Session{ AuthURL: "https://www.example.com/auth", } |