Skip to content

Commit c7a7e87

Browse files
committed
docs: fix CORS proxy path and add link to source in FAQ
Update CLAUDE.md to reference correct api/bugzilla.ts path. Add clickable link to CORS proxy source code in FAQ answer about API key security.
1 parent 9feb76a commit c7a7e87

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Slices are composed in `src/store/index.ts`. Devtools disabled in production to
3838

3939
- `src/lib/bugzilla/client.ts`: BugzillaClient class for API calls
4040
- `src/lib/bugzilla/status-mapper.ts`: Maps Bugzilla statuses ↔ Kanban columns
41-
- `api/bugzilla/[...path].ts`: Vercel serverless CORS proxy to bugzilla.mozilla.org
41+
- `api/bugzilla.ts`: Vercel serverless CORS proxy to bugzilla.mozilla.org
4242

4343
### Branded Types
4444

src/components/FAQ/FaqModal.tsx

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,22 @@ const faqs = [
2626
},
2727
{
2828
question: 'Is my API key secure?',
29-
answer:
30-
'Your API key is encrypted and stored locally in your browser. API requests pass through our open-source CORS proxy to reach Bugzilla (required due to browser security restrictions). We do not log or store your key. You can review the proxy code on GitHub.',
29+
answer: (
30+
<>
31+
Your API key is encrypted and stored locally in your browser. API requests pass through our
32+
open-source CORS proxy to reach Bugzilla (required due to browser security restrictions). We
33+
do not log or store your key. You can review the{' '}
34+
<a
35+
href="https://github.com/msujaws/bugzilla-kanban/blob/9feb76a280193ce43ba55c841b3071fb996513e6/api/bugzilla.ts"
36+
target="_blank"
37+
rel="noopener noreferrer"
38+
className="text-accent-primary hover:underline"
39+
>
40+
proxy code on GitHub
41+
</a>
42+
.
43+
</>
44+
),
3145
},
3246
{
3347
question: 'What do the columns mean?',

0 commit comments

Comments
 (0)