Files
ditto/src/middleware/requireSigner.ts
2024-06-18 11:51:51 -05:00

13 lines
329 B
TypeScript

import { HTTPException } from '@hono/hono/http-exception';
import { AppMiddleware } from '@/app.ts';
/** Throw a 401 if a signer isn't set. */
export const requireSigner: AppMiddleware = async (c, next) => {
if (!c.get('signer')) {
throw new HTTPException(401, { message: 'No pubkey provided' });
}
await next();
};