Return an error for POST /api/v1/accounts

This commit is contained in:
Alex Gleason
2023-07-08 11:20:10 -05:00
parent b7ecc609de
commit bdf8e9a61d
2 changed files with 7 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ import {
accountLookupController,
accountSearchController,
accountStatusesController,
createAccountController,
relationshipsController,
updateCredentialsController,
verifyCredentialsController,
@@ -61,6 +62,7 @@ app.post('/oauth/revoke', emptyObjectController);
app.post('/oauth/authorize', oauthAuthorizeController);
app.get('/oauth/authorize', oauthController);
app.post('/api/v1/acccounts', createAccountController);
app.get('/api/v1/accounts/verify_credentials', requireAuth, verifyCredentialsController);
app.patch('/api/v1/accounts/update_credentials', requireAuth, updateCredentialsController);
app.get('/api/v1/accounts/search', accountSearchController);