Workaround for api home redir not working

This commit is contained in:
dangered wolf 2023-11-15 14:15:55 -05:00
parent d6bf634cef
commit 9da7927c13
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -27,4 +27,5 @@ api.get('/robots.txt', async c => c.text(Strings.ROBOTS_TXT_API));
api.get('/:handle', profileRequest);
api.get('/:handle/', profileRequest);
api.get('/', async c => c.redirect(Constants.API_DOCS_URL, 302));
/* TODO: Figure out why / won't resolve but * does */
api.get('*', async c => c.redirect(Constants.API_DOCS_URL, 302));