Skip to content

Commit

Permalink
kwoodhouse93
Browse files Browse the repository at this point in the history
Co-authored-by: daic0r <[email protected]>
  • Loading branch information
daic0r and daic0r authored Oct 9, 2024
1 parent acf9b6c commit f40c325
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions endpoints/authorize.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ func (c *Client) Authorize(req types.AuthorizeRequest) (*types.AuthorizeResponse
q := r.URL.Query()
q.Add("scopes", req.Scopes)
q.Add("provider", string(req.Provider))
q.Add("redirect_to", req.RedirectTo)

verifier := ""

Expand Down
1 change: 1 addition & 0 deletions types/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ const (

type AuthorizeRequest struct {
Provider Provider
RedirectTo string
FlowType FlowType
Scopes string
}
Expand Down

0 comments on commit f40c325

Please sign in to comment.