GithubAuthCallback returns the URL for the Github auth callback.
()
| 260 | |
| 261 | // GithubAuthCallback returns the URL for the Github auth callback. |
| 262 | func (u *URLs) GithubAuthCallback() string { |
| 263 | return urlutil.MustJoinURL(u.external, "/github/auth/callback") // NOTE: Always using the primary external URL. |
| 264 | } |
| 265 | |
| 266 | // GithubConnectUI returns the page in the Rill frontend for starting the Github connect flow. |
| 267 | func (u *URLs) GithubConnectUI(redirect string) string { |
no test coverage detected