()
| 36 | : undefined; |
| 37 | |
| 38 | export const getGithubApp = () => { |
| 39 | if (githubApp === undefined) |
| 40 | throw new Error('Github integration not configured'); |
| 41 | return githubApp; |
| 42 | }; |
| 43 | |
| 44 | /** Build the GitHub OAuth authorize URL for linking a user's personal GitHub |
| 45 | * account (user-to-server token). Uses the same GitHub App OAuth client as the |
no outgoing calls
no test coverage detected