Skip to content

Commit ef1c87d

Browse files
committed
feat: implement public API endpoints for credential verification, issuance, and retrieval with rate limiting and authentication
1 parent efe966b commit ef1c87d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/src/routes/publicApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ router.post('/credentials/issue', async (req: ApiKeyRequest, res: Response): Pro
136136
return;
137137
}
138138

139-
const issuerId = req.apiKey.issuer_id;
139+
const issuerId = req.apiKey!.issuer_id;
140140

141141
// Check subscription limits
142142
const subStatus = await getIssuerSubscriptionStatus(issuerId);

0 commit comments

Comments
 (0)