3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-22 01:05:02 +00:00

Add hide_case option to automod mod actions

This commit is contained in:
Dragory 2021-05-03 18:49:52 +03:00
parent 2ba7e63546
commit b0fd29f098
6 changed files with 14 additions and 0 deletions

View file

@ -35,6 +35,7 @@ export async function createCase(pluginData: GuildPluginData<CasesPluginType>, a
audit_log_id: args.auditLogId,
pp_id: args.ppId,
pp_name: ppName,
is_hidden: Boolean(args.hide),
});
if (args.reason || (args.noteDetails && args.noteDetails.length)) {

View file

@ -40,6 +40,7 @@ export type CaseArgs = {
postInCaseLogOverride?: boolean;
noteDetails?: string[];
extraNotes?: string[];
hide?: boolean;
};
export type CaseNoteArgs = {