credentialsController --> verifyCredentialsController

This commit is contained in:
Alex Gleason
2023-05-20 14:44:18 -05:00
parent f3e42cc6a7
commit 02160f8c9e
2 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ import { getAuthor, getFilter, getFollows } from '@/client.ts';
import { toAccount, toStatus } from '@/transmute.ts';
import { eventDateComparator, lookupAccount } from '@/utils.ts';
const credentialsController: AppController = async (c) => {
const verifyCredentialsController: AppController = async (c) => {
const pubkey = c.get('pubkey')!;
const event = await getAuthor(pubkey);
@@ -109,6 +109,6 @@ export {
accountLookupController,
accountSearchController,
accountStatusesController,
credentialsController,
relationshipsController,
verifyCredentialsController,
};