(viewerId: string, sessionId: string)
| 12 | const graphqlApiBaseUrl = process.env.DIGRAPH_API_BASE_URL || 'http://localhost:8080' |
| 13 | |
| 14 | export const basicAuthSecret = (viewerId: string, sessionId: string) => |
| 15 | Buffer.from(`${viewerId}:${sessionId}`).toString('base64') |
| 16 | |
| 17 | export default (app: Express) => { |
| 18 | app.post( |
no test coverage detected