From 0bf41bc9133a790723b1857343b7c5640578836b Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 3 Oct 2024 19:37:14 -0500 Subject: [PATCH] Use Pleroma's captcha endpoint (we basically match their return type) --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index 42c5b8dd..b8469e11 100644 --- a/src/app.ts +++ b/src/app.ts @@ -279,7 +279,7 @@ app.put('/api/v1/admin/ditto/relays', requireRole('admin'), adminSetRelaysContro app.post('/api/v1/ditto/names', requireSigner, nameRequestController); app.get('/api/v1/ditto/names', requireSigner, nameRequestsController); -app.get('/api/v1/ditto/captcha', captchaController); +app.get('/api/v1/pleroma/captcha', captchaController); app.get('/api/v1/ditto/zap_splits', getZapSplitsController); app.get('/api/v1/ditto/:id{[0-9a-f]{64}}/zap_splits', statusZapSplitsController);