(repoSlug: string)
| 161 | } |
| 162 | |
| 163 | function getTeamMemorySyncEndpoint(repoSlug: string): string { |
| 164 | const baseUrl = |
| 165 | process.env.TEAM_MEMORY_SYNC_URL || getOauthConfig().BASE_API_URL |
| 166 | return `${baseUrl}/api/claude_code/team_memory?repo=${encodeURIComponent(repoSlug)}` |
| 167 | } |
| 168 | |
| 169 | function getAuthHeaders(): { |
| 170 | headers?: Record<string, string> |
no test coverage detected