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

@@ -6,6 +6,10 @@ import { signEvent } from '@/sign.ts';
import { toAccount, toStatus } from '@/transmute.ts';
import { buildLinkHeader, eventDateComparator, lookupAccount, paginationSchema, parseBody } from '@/utils.ts';
const createAccountController: AppController = (c) => {
return c.json({ error: 'Please log in with Nostr.' }, 405);
};
const verifyCredentialsController: AppController = async (c) => {
const pubkey = c.get('pubkey')!;
@@ -172,6 +176,7 @@ export {
accountLookupController,
accountSearchController,
accountStatusesController,
createAccountController,
relationshipsController,
updateCredentialsController,
verifyCredentialsController,