strfry-policies/src/policies/read-only-policy.ts
2023-03-24 14:36:11 -05:00

11 lines
238 B
TypeScript
Executable File

import type { Policy } from '../types.ts';
/** This policy rejects all messages. */
const readOnlyPolicy: Policy = (msg) => ({
id: msg.event.id,
action: 'reject',
msg: 'The relay is read-only.',
});
export default readOnlyPolicy;