(redirectURL string)
| 300 | } |
| 301 | |
| 302 | func (m *Manager) oauth2Config(redirectURL string) *oauth2.Config { |
| 303 | return &oauth2.Config{ |
| 304 | ClientID: m.config.ClientID, |
| 305 | ClientSecret: m.config.ClientSecret, |
| 306 | RedirectURL: redirectURL, |
| 307 | Scopes: m.config.Scopes, |
| 308 | Endpoint: m.config.Endpoint, |
| 309 | } |
| 310 | } |
no outgoing calls
no test coverage detected