/api/v1/acccounts --> /api/v1/accounts

This commit is contained in:
Alex Gleason 2023-09-10 19:23:50 -05:00
parent 2d7398e9d1
commit e3f11545b7
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ app.post('/oauth/revoke', emptyObjectController);
app.post('/oauth/authorize', oauthAuthorizeController);
app.get('/oauth/authorize', oauthController);
app.post('/api/v1/acccounts', requireProof({ pow: Conf.pow.registrations }), createAccountController);
app.post('/api/v1/accounts', requireProof({ pow: Conf.pow.registrations }), createAccountController);
app.get('/api/v1/accounts/verify_credentials', requirePubkey, verifyCredentialsController);
app.patch('/api/v1/accounts/update_credentials', requirePubkey, updateCredentialsController);
app.get('/api/v1/accounts/search', accountSearchController);