mirror of
https://github.com/aljazceru/ditto.git
synced 2025-12-26 17:54:28 +01:00
7 lines
230 B
TypeScript
7 lines
230 B
TypeScript
import { AppController } from '@/app.ts';
|
|
|
|
/** https://docs.joinmastodon.org/methods/blocks/#get */
|
|
export const blocksController: AppController = (c) => {
|
|
return c.json({ error: 'Blocking is not supported by Nostr' }, 422);
|
|
};
|