(appId: string)
| 5 | const appsKey = ["oauth2-provider", "apps"]; |
| 6 | const userAppsKey = (userId: string) => appsKey.concat(userId); |
| 7 | const appKey = (appId: string) => appsKey.concat(appId); |
| 8 | const appSecretsKey = (appId: string) => appKey(appId).concat("secrets"); |
| 9 | |
| 10 | export const getGitHubDevice = () => { |
no outgoing calls
no test coverage detected