-
Notifications
You must be signed in to change notification settings - Fork 230
Expand file tree
/
Copy pathavailableActions.ts
More file actions
44 lines (43 loc) · 1.7 KB
/
availableActions.ts
File metadata and controls
44 lines (43 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { AutomodActionBlueprint } from "../helpers.js";
import { AddReactionsAction } from "./addReactions.js";
import { AddRolesAction } from "./addRoles.js";
import { AddToCounterAction } from "./addToCounter.js";
import { AlertAction } from "./alert.js";
import { ArchiveThreadAction } from "./archiveThread.js";
import { BanAction } from "./ban.js";
import { ChangeNicknameAction } from "./changeNickname.js";
import { ChangePermsAction } from "./changePerms.js";
import { CleanAction } from "./clean.js";
import { KickAction } from "./kick.js";
import { LogAction } from "./log.js";
import { MuteAction } from "./mute.js";
import { PauseInvitesAction } from "./pauseInvites.js";
import { RemoveRolesAction } from "./removeRoles.js";
import { ReplyAction } from "./reply.js";
import { SetAntiraidLevelAction } from "./setAntiraidLevel.js";
import { SetCounterAction } from "./setCounter.js";
import { SetSlowmodeAction } from "./setSlowmode.js";
import { StartThreadAction } from "./startThread.js";
import { WarnAction } from "./warn.js";
export const availableActions = {
clean: CleanAction,
warn: WarnAction,
mute: MuteAction,
kick: KickAction,
ban: BanAction,
alert: AlertAction,
change_nickname: ChangeNicknameAction,
log: LogAction,
add_roles: AddRolesAction,
add_reactions: AddReactionsAction,
remove_roles: RemoveRolesAction,
set_antiraid_level: SetAntiraidLevelAction,
reply: ReplyAction,
add_to_counter: AddToCounterAction,
set_counter: SetCounterAction,
set_slowmode: SetSlowmodeAction,
start_thread: StartThreadAction,
archive_thread: ArchiveThreadAction,
change_perms: ChangePermsAction,
pause_invites: PauseInvitesAction,
} satisfies Record<string, AutomodActionBlueprint<any>>;