3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-19 16:05:01 +00:00
zeppelin/backend/src/plugins/Automod/actions/log.ts

10 lines
229 B
TypeScript

import * as t from "io-ts";
import { automodAction } from "../helpers";
export const LogAction = automodAction({
configType: t.boolean,
async apply({ pluginData, contexts, actionConfig }) {
// TODO: Everything
},
});