mirror of
https://github.com/aljazceru/ditto.git
synced 2025-12-26 09:44:25 +01:00
13 lines
308 B
TypeScript
13 lines
308 B
TypeScript
import { HTTPException } from 'hono';
|
|
|
|
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();
|
|
};
|