2021-06-06 23:51:32 +02:00
|
|
|
import { AutoDeletePlugin } from "./AutoDelete/AutoDeletePlugin";
|
|
|
|
import { AutomodPlugin } from "./Automod/AutomodPlugin";
|
2020-07-20 00:23:47 +02:00
|
|
|
import { AutoReactionsPlugin } from "./AutoReactions/AutoReactionsPlugin";
|
2021-06-06 23:51:32 +02:00
|
|
|
import { BotControlPlugin } from "./BotControl/BotControlPlugin";
|
2020-07-22 22:26:05 +03:00
|
|
|
import { CasesPlugin } from "./Cases/CasesPlugin";
|
2020-07-23 01:23:36 +02:00
|
|
|
import { CensorPlugin } from "./Censor/CensorPlugin";
|
2020-07-22 22:33:10 +02:00
|
|
|
import { ChannelArchiverPlugin } from "./ChannelArchiver/ChannelArchiverPlugin";
|
2020-07-29 00:28:04 +03:00
|
|
|
import { CompanionChannelsPlugin } from "./CompanionChannels/CompanionChannelsPlugin";
|
2021-08-13 05:01:08 +02:00
|
|
|
import { ContextMenuPlugin } from "./ContextMenus/ContextMenuPlugin";
|
2021-06-06 23:51:32 +02:00
|
|
|
import { CountersPlugin } from "./Counters/CountersPlugin";
|
2020-07-30 02:47:47 +03:00
|
|
|
import { CustomEventsPlugin } from "./CustomEvents/CustomEventsPlugin";
|
2020-07-30 23:01:05 +03:00
|
|
|
import { GuildAccessMonitorPlugin } from "./GuildAccessMonitor/GuildAccessMonitorPlugin";
|
2021-06-06 23:51:32 +02:00
|
|
|
import { GuildConfigReloaderPlugin } from "./GuildConfigReloader/GuildConfigReloaderPlugin";
|
|
|
|
import { GuildInfoSaverPlugin } from "./GuildInfoSaver/GuildInfoSaverPlugin";
|
|
|
|
import { LocateUserPlugin } from "./LocateUser/LocateUserPlugin";
|
|
|
|
import { LogsPlugin } from "./Logs/LogsPlugin";
|
|
|
|
import { MessageSaverPlugin } from "./MessageSaver/MessageSaverPlugin";
|
|
|
|
import { ModActionsPlugin } from "./ModActions/ModActionsPlugin";
|
|
|
|
import { MutesPlugin } from "./Mutes/MutesPlugin";
|
|
|
|
import { NameHistoryPlugin } from "./NameHistory/NameHistoryPlugin";
|
|
|
|
import { PersistPlugin } from "./Persist/PersistPlugin";
|
|
|
|
import { PingableRolesPlugin } from "./PingableRoles/PingableRolesPlugin";
|
|
|
|
import { PostPlugin } from "./Post/PostPlugin";
|
|
|
|
import { ReactionRolesPlugin } from "./ReactionRoles/ReactionRolesPlugin";
|
|
|
|
import { RemindersPlugin } from "./Reminders/RemindersPlugin";
|
|
|
|
import { RolesPlugin } from "./Roles/RolesPlugin";
|
|
|
|
import { SelfGrantableRolesPlugin } from "./SelfGrantableRoles/SelfGrantableRolesPlugin";
|
|
|
|
import { SlowmodePlugin } from "./Slowmode/SlowmodePlugin";
|
|
|
|
import { SpamPlugin } from "./Spam/SpamPlugin";
|
|
|
|
import { StarboardPlugin } from "./Starboard/StarboardPlugin";
|
|
|
|
import { TagsPlugin } from "./Tags/TagsPlugin";
|
2020-08-19 00:19:12 +03:00
|
|
|
import { TimeAndDatePlugin } from "./TimeAndDate/TimeAndDatePlugin";
|
2021-06-06 23:51:32 +02:00
|
|
|
import { UsernameSaverPlugin } from "./UsernameSaver/UsernameSaverPlugin";
|
|
|
|
import { UtilityPlugin } from "./Utility/UtilityPlugin";
|
|
|
|
import { WelcomeMessagePlugin } from "./WelcomeMessage/WelcomeMessagePlugin";
|
|
|
|
import { ZeppelinGlobalPluginBlueprint, ZeppelinGuildPluginBlueprint } from "./ZeppelinPluginBlueprint";
|
2021-10-31 17:17:31 +02:00
|
|
|
import { PhishermanPlugin } from "./Phisherman/PhishermanPlugin";
|
2021-11-02 19:59:30 +02:00
|
|
|
import { InternalPosterPlugin } from "./InternalPoster/InternalPosterPlugin";
|
2019-05-25 14:40:00 +03:00
|
|
|
|
2020-07-06 01:53:58 +03:00
|
|
|
// prettier-ignore
|
2020-10-01 01:43:38 +03:00
|
|
|
export const guildPlugins: Array<ZeppelinGuildPluginBlueprint<any>> = [
|
2020-07-23 02:06:50 +02:00
|
|
|
AutoDeletePlugin,
|
2020-07-20 00:23:47 +02:00
|
|
|
AutoReactionsPlugin,
|
2020-07-23 01:33:01 +02:00
|
|
|
GuildInfoSaverPlugin,
|
2020-07-23 01:23:36 +02:00
|
|
|
CensorPlugin,
|
2020-07-22 22:33:10 +02:00
|
|
|
ChannelArchiverPlugin,
|
2020-07-08 02:53:44 +02:00
|
|
|
LocateUserPlugin,
|
2020-07-27 01:53:14 +02:00
|
|
|
LogsPlugin,
|
2020-07-21 01:02:42 +02:00
|
|
|
PersistPlugin,
|
2020-07-21 23:11:05 +02:00
|
|
|
PingableRolesPlugin,
|
2020-07-23 21:26:22 +02:00
|
|
|
PostPlugin,
|
2020-07-26 01:53:55 +02:00
|
|
|
ReactionRolesPlugin,
|
2020-07-20 23:22:42 +02:00
|
|
|
MessageSaverPlugin,
|
2020-07-24 02:25:33 +02:00
|
|
|
ModActionsPlugin,
|
2020-07-21 17:55:25 +02:00
|
|
|
NameHistoryPlugin,
|
2020-07-16 22:54:02 +02:00
|
|
|
RemindersPlugin,
|
2020-07-23 00:55:12 +02:00
|
|
|
RolesPlugin,
|
2020-07-27 00:08:01 +02:00
|
|
|
SelfGrantableRolesPlugin,
|
2020-07-23 00:25:40 +02:00
|
|
|
SlowmodePlugin,
|
2020-07-26 16:05:49 +02:00
|
|
|
SpamPlugin,
|
2020-07-22 23:15:40 +02:00
|
|
|
StarboardPlugin,
|
2020-07-22 22:01:53 +02:00
|
|
|
TagsPlugin,
|
2020-07-16 21:41:50 +02:00
|
|
|
UsernameSaverPlugin,
|
2019-05-25 14:40:00 +03:00
|
|
|
UtilityPlugin,
|
2020-07-16 20:49:43 +02:00
|
|
|
WelcomeMessagePlugin,
|
2020-07-22 22:26:05 +03:00
|
|
|
CasesPlugin,
|
|
|
|
MutesPlugin,
|
2020-07-27 20:42:10 +03:00
|
|
|
AutomodPlugin,
|
2020-07-29 00:28:04 +03:00
|
|
|
CompanionChannelsPlugin,
|
2020-07-30 02:47:47 +03:00
|
|
|
CustomEventsPlugin,
|
2020-08-19 00:19:12 +03:00
|
|
|
TimeAndDatePlugin,
|
2021-02-13 17:29:10 +02:00
|
|
|
CountersPlugin,
|
2021-08-13 05:01:08 +02:00
|
|
|
ContextMenuPlugin,
|
2021-10-31 17:17:31 +02:00
|
|
|
PhishermanPlugin,
|
2021-11-02 19:59:30 +02:00
|
|
|
InternalPosterPlugin,
|
2019-05-25 14:40:00 +03:00
|
|
|
];
|
|
|
|
|
2020-07-22 22:25:50 +03:00
|
|
|
// prettier-ignore
|
2020-10-01 01:43:38 +03:00
|
|
|
export const globalPlugins: Array<ZeppelinGlobalPluginBlueprint<any>> = [
|
2020-07-22 22:25:50 +03:00
|
|
|
GuildConfigReloaderPlugin,
|
2020-07-30 03:21:07 +03:00
|
|
|
BotControlPlugin,
|
2020-07-30 23:01:05 +03:00
|
|
|
GuildAccessMonitorPlugin,
|
2020-07-22 22:25:50 +03:00
|
|
|
];
|
2020-07-30 22:23:18 +03:00
|
|
|
|
|
|
|
// prettier-ignore
|
2020-10-01 01:43:38 +03:00
|
|
|
export const baseGuildPlugins: Array<ZeppelinGuildPluginBlueprint<any>> = [
|
2020-07-30 22:23:18 +03:00
|
|
|
GuildInfoSaverPlugin,
|
|
|
|
MessageSaverPlugin,
|
|
|
|
NameHistoryPlugin,
|
|
|
|
CasesPlugin,
|
|
|
|
MutesPlugin,
|
2020-08-19 00:19:12 +03:00
|
|
|
TimeAndDatePlugin,
|
2020-07-30 22:23:18 +03:00
|
|
|
// TODO: Replace these with proper dependencies
|
|
|
|
];
|