Migrate Logs to new Plugin structure, also dont ignore it
This commit is contained in:
parent
140ba84544
commit
aea019181c
16 changed files with 764 additions and 1 deletions
23
backend/src/plugins/Logs/events/LogsRoleModifyEvts.ts
Normal file
23
backend/src/plugins/Logs/events/LogsRoleModifyEvts.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { logsEvent } from "../types";
|
||||
import { stripObjectToScalars } from "src/utils";
|
||||
import { LogType } from "src/data/LogType";
|
||||
|
||||
export const LogsRoleCreateEvt = logsEvent({
|
||||
event: "guildRoleCreate",
|
||||
|
||||
async listener(meta) {
|
||||
meta.pluginData.state.guildLogs.log(LogType.ROLE_CREATE, {
|
||||
role: stripObjectToScalars(meta.args.role),
|
||||
});
|
||||
},
|
||||
});
|
||||
|
||||
export const LogsRoleDeleteEvt = logsEvent({
|
||||
event: "guildRoleDelete",
|
||||
|
||||
async listener(meta) {
|
||||
meta.pluginData.state.guildLogs.log(LogType.ROLE_DELETE, {
|
||||
role: stripObjectToScalars(meta.args.role),
|
||||
});
|
||||
},
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue