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 /cmd/cashierd | |
parent | 376b8f670a9c80e8ae69581a354cb989571c44c2 (diff) |
Revert "Remove the oauth_callback_url config option"
Diffstat (limited to 'cmd/cashierd')
-rw-r--r-- | cmd/cashierd/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/cashierd/main.go b/cmd/cashierd/main.go index b054606..7277773 100644 --- a/cmd/cashierd/main.go +++ b/cmd/cashierd/main.go @@ -182,7 +182,7 @@ func signHandler(a *appContext, w http.ResponseWriter, r *http.Request) (int, er func loginHandler(a *appContext, w http.ResponseWriter, r *http.Request) (int, error) { state := newState() a.setAuthStateCookie(w, r, state) - a.authsession = a.authprovider.StartSession(state, r) + a.authsession = a.authprovider.StartSession(state) http.Redirect(w, r, a.authsession.AuthURL, http.StatusFound) return http.StatusFound, nil } |