├── .clabot ├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .github └── workflows │ └── codequality.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── DEVELOPMENT.md ├── LICENSE.md ├── MANAGEMENT.md ├── PRODUCTION.md ├── README.md ├── assets ├── icons │ ├── LICENSE │ ├── announcement-channel.png │ ├── announcement-channel.svg │ ├── case_ban.png │ ├── case_deleted.png │ ├── case_icons.afphoto │ ├── case_kick.png │ ├── case_mute.png │ ├── case_note.png │ ├── case_softban.png │ ├── case_unban.png │ ├── case_unmute.png │ ├── case_warn.png │ ├── memo.svg │ ├── message.png │ ├── message.svg │ ├── snowflake.png │ ├── snowflake.svg │ ├── text-channel.png │ ├── text-channel.svg │ ├── voice-channel.png │ └── voice-channel.svg └── zepbanner.png ├── backend ├── .gitignore ├── .prettierignore ├── package-lock.json ├── package.json ├── register-tsconfig-paths.js ├── src │ ├── Blocker.ts │ ├── DiscordJSError.ts │ ├── Queue.ts │ ├── QueuedEventEmitter.ts │ ├── RecoverablePluginError.ts │ ├── RegExpRunner.ts │ ├── SimpleCache.ts │ ├── SimpleError.ts │ ├── api │ │ ├── archives.ts │ │ ├── auth.ts │ │ ├── docs.ts │ │ ├── guilds.ts │ │ ├── guilds │ │ │ ├── importExport.ts │ │ │ ├── index.ts │ │ │ └── misc.ts │ │ ├── index.ts │ │ ├── permissions.ts │ │ ├── rateLimits.ts │ │ ├── responses.ts │ │ ├── staff.ts │ │ ├── start.ts │ │ └── tasks.ts │ ├── commandTypes.ts │ ├── configValidator.ts │ ├── data │ │ ├── AllowedGuilds.ts │ │ ├── ApiAuditLog.ts │ │ ├── ApiLogins.ts │ │ ├── ApiPermissionAssignments.ts │ │ ├── ApiUserInfo.ts │ │ ├── Archives.ts │ │ ├── BaseGuildRepository.ts │ │ ├── BaseRepository.ts │ │ ├── CaseTypes.ts │ │ ├── Configs.ts │ │ ├── DefaultLogMessages.json │ │ ├── GuildAntiraidLevels.ts │ │ ├── GuildArchives.ts │ │ ├── GuildAutoReactions.ts │ │ ├── GuildButtonRoles.ts │ │ ├── GuildCases.ts │ │ ├── GuildContextMenuLinks.ts │ │ ├── GuildCounters.ts │ │ ├── GuildEvents.ts │ │ ├── GuildLogs.ts │ │ ├── GuildMemberCache.ts │ │ ├── GuildMemberTimezones.ts │ │ ├── GuildMutes.ts │ │ ├── GuildNicknameHistory.ts │ │ ├── GuildPersistedData.ts │ │ ├── GuildPingableRoles.ts │ │ ├── GuildReactionRoles.ts │ │ ├── GuildReminders.ts │ │ ├── GuildRoleButtons.ts │ │ ├── GuildRoleQueue.ts │ │ ├── GuildSavedMessages.ts │ │ ├── GuildScheduledPosts.ts │ │ ├── GuildSlowmodes.ts │ │ ├── GuildStarboardMessages.ts │ │ ├── GuildStarboardReactions.ts │ │ ├── GuildStats.ts │ │ ├── GuildTags.ts │ │ ├── GuildTempbans.ts │ │ ├── GuildVCAlerts.ts │ │ ├── LogType.ts │ │ ├── MemberCache.ts │ │ ├── MuteTypes.ts │ │ ├── Mutes.ts │ │ ├── Phisherman.ts │ │ ├── Reminders.ts │ │ ├── ScheduledPosts.ts │ │ ├── Supporters.ts │ │ ├── Tempbans.ts │ │ ├── UsernameHistory.ts │ │ ├── VCAlerts.ts │ │ ├── Webhooks.ts │ │ ├── Zalgo.ts │ │ ├── apiAuditLogTypes.ts │ │ ├── buildEntity.ts │ │ ├── cleanup │ │ │ ├── configs.ts │ │ │ ├── messages.ts │ │ │ ├── nicknames.ts │ │ │ └── usernames.ts │ │ ├── dataSource.ts │ │ ├── db.ts │ │ ├── entities │ │ │ ├── AllowedGuild.ts │ │ │ ├── AntiraidLevel.ts │ │ │ ├── ApiAuditLogEntry.ts │ │ │ ├── ApiLogin.ts │ │ │ ├── ApiPermissionAssignment.ts │ │ │ ├── ApiUserInfo.ts │ │ │ ├── ArchiveEntry.ts │ │ │ ├── AutoReaction.ts │ │ │ ├── ButtonRole.ts │ │ │ ├── Case.ts │ │ │ ├── CaseNote.ts │ │ │ ├── Config.ts │ │ │ ├── ContextMenuLink.ts │ │ │ ├── Counter.ts │ │ │ ├── CounterTrigger.ts │ │ │ ├── CounterTriggerState.ts │ │ │ ├── CounterValue.ts │ │ │ ├── MemberCacheItem.ts │ │ │ ├── MemberTimezone.ts │ │ │ ├── Mute.ts │ │ │ ├── NicknameHistoryEntry.ts │ │ │ ├── PersistedData.ts │ │ │ ├── PhishermanCacheEntry.ts │ │ │ ├── PhishermanKeyCacheEntry.ts │ │ │ ├── PingableRole.ts │ │ │ ├── ReactionRole.ts │ │ │ ├── Reminder.ts │ │ │ ├── RoleButtonsItem.ts │ │ │ ├── RoleQueueItem.ts │ │ │ ├── SavedMessage.ts │ │ │ ├── ScheduledPost.ts │ │ │ ├── SlowmodeChannel.ts │ │ │ ├── SlowmodeUser.ts │ │ │ ├── StarboardMessage.ts │ │ │ ├── StarboardReaction.ts │ │ │ ├── StatValue.ts │ │ │ ├── Supporter.ts │ │ │ ├── Tag.ts │ │ │ ├── TagResponse.ts │ │ │ ├── Tempban.ts │ │ │ ├── UsernameHistoryEntry.ts │ │ │ ├── VCAlert.ts │ │ │ └── Webhook.ts │ │ ├── getChannelIdFromMessageId.ts │ │ ├── loops │ │ │ ├── expiredArchiveDeletionLoop.ts │ │ │ ├── expiredMemberCacheDeletionLoop.ts │ │ │ ├── expiringMutesLoop.ts │ │ │ ├── expiringTempbansLoop.ts │ │ │ ├── expiringVCAlertsLoop.ts │ │ │ ├── memberCacheDeletionLoop.ts │ │ │ ├── phishermanLoops.ts │ │ │ ├── savedMessageCleanupLoop.ts │ │ │ ├── upcomingRemindersLoop.ts │ │ │ └── upcomingScheduledPostsLoop.ts │ │ ├── queryLogger.ts │ │ └── types │ │ │ └── phisherman.ts │ ├── env.ts │ ├── globals.ts │ ├── humanizeDurationShort.ts │ ├── index.ts │ ├── logger.ts │ ├── migrateConfigsToDB.ts │ ├── migrations │ │ ├── 1540519249973-CreatePreTypeORMTables.ts │ │ ├── 1543053430712-CreateMessagesTable.ts │ │ ├── 1544877081073-CreateSlowmodeTables.ts │ │ ├── 1544887946307-CreateStarboardTable.ts │ │ ├── 1546770935261-CreateTagResponsesTable.ts │ │ ├── 1546778415930-CreateNameHistoryTable.ts │ │ ├── 1546788508314-MakeNameHistoryValueLengthLonger.ts │ │ ├── 1547290549908-CreateAutoReactionsTable.ts │ │ ├── 1547293464842-CreatePingableRolesTable.ts │ │ ├── 1547392046629-AddIndexToArchivesExpiresAt.ts │ │ ├── 1547393619900-AddIsHiddenToCases.ts │ │ ├── 1549649586803-AddPPFieldsToCases.ts │ │ ├── 1550409894008-FixEmojiIndexInReactionRoles.ts │ │ ├── 1550521627877-CreateSelfGrantableRolesTable.ts │ │ ├── 1550609900261-CreateRemindersTable.ts │ │ ├── 1556908589679-CreateUsernameHistoryTable.ts │ │ ├── 1556909512501-MigrateUsernamesToNewHistoryTable.ts │ │ ├── 1556913287547-TurnNameHistoryToNicknameHistory.ts │ │ ├── 1556973844545-CreateScheduledPostsTable.ts │ │ ├── 1558804433320-CreateDashboardLoginsTable.ts │ │ ├── 1558804449510-CreateDashboardUsersTable.ts │ │ ├── 1561111990357-CreateConfigsTable.ts │ │ ├── 1561117545258-CreateAllowedGuildsTable.ts │ │ ├── 1561282151982-RenameBackendDashboardStuffToAPI.ts │ │ ├── 1561282552734-RenameAllowedGuildGuildIdToId.ts │ │ ├── 1561282950483-CreateApiUserInfoTable.ts │ │ ├── 1561283165823-RenameApiUsersToApiPermissions.ts │ │ ├── 1561283405201-DropUserDataFromLoginsAndPermissions.ts │ │ ├── 1561391921385-AddVCAlertTable.ts │ │ ├── 1562838838927-AddMoreIndicesToVCAlerts.ts │ │ ├── 1573158035867-AddTypeAndPermissionsToApiPermissions.ts │ │ ├── 1573248462469-MoveStarboardsToConfig.ts │ │ ├── 1573248794313-CreateStarboardReactionsTable.ts │ │ ├── 1575145703039-AddIsExclusiveToReactionRoles.ts │ │ ├── 1575199835233-CreateStatsTable.ts │ │ ├── 1575230079526-AddRepeatColumnsToScheduledPosts.ts │ │ ├── 1578445483917-CreateReminderCreatedAtField.ts │ │ ├── 1580038836906-CreateAntiraidLevelsTable.ts │ │ ├── 1580654617890-AddActiveFollowsToLocateUser.ts │ │ ├── 1590616691907-CreateSupportersTable.ts │ │ ├── 1591036185142-OptimizeMessageIndices.ts │ │ ├── 1591038041635-OptimizeMessageTimestamps.ts │ │ ├── 1596994103885-AddCaseNotesForeignKey.ts │ │ ├── 1597015567215-AddLogMessageIdToCases.ts │ │ ├── 1597109357201-CreateMemberTimezonesTable.ts │ │ ├── 1600283341726-EncryptExistingMessages.ts │ │ ├── 1600285077890-EncryptArchives.ts │ │ ├── 1608608903570-CreateRestoredRolesColumn.ts │ │ ├── 1608692857722-FixStarboardReactionsIndices.ts │ │ ├── 1608753440716-CreateTempBansTable.ts │ │ ├── 1612010765767-CreateCounterTables.ts │ │ ├── 1617363975046-UpdateCounterTriggers.ts │ │ ├── 1622939525343-OrderReactionRoles.ts │ │ ├── 1623018101018-CreateButtonRolesTable.ts │ │ ├── 1628809879962-CreateContextMenuTable.ts │ │ ├── 1630837386329-AddExpiresAtToApiPermissions.ts │ │ ├── 1630837718830-CreateApiAuditLogTable.ts │ │ ├── 1630840428694-AddTimestampsToAllowedGuilds.ts │ │ ├── 1631474131804-AddIndexToIsBot.ts │ │ ├── 1632582078622-SplitScheduledPostsPostAtIndex.ts │ │ ├── 1632582299400-AddIndexToRemindersRemindAt.ts │ │ ├── 1634459708599-RemoveTagResponsesForeignKeys.ts │ │ ├── 1634563901575-CreatePhishermanCacheTable.ts │ │ ├── 1635596150234-CreatePhishermanKeyCacheTable.ts │ │ ├── 1635779678653-CreateWebhooksTable.ts │ │ ├── 1650709103864-CreateRoleQueueTable.ts │ │ ├── 1650712828384-CreateRoleButtonsTable.ts │ │ ├── 1650721020704-RemoveButtonRolesTable.ts │ │ ├── 1680354053183-AddTimeoutColumnsToMutes.ts │ │ └── 1682788165866-CreateMemberCacheTable.ts │ ├── paths.ts │ ├── pluginUtils.ts │ ├── plugins │ │ ├── AutoDelete │ │ │ ├── AutoDeletePlugin.ts │ │ │ ├── types.ts │ │ │ └── util │ │ │ │ ├── addMessageToDeletionQueue.ts │ │ │ │ ├── deleteNextItem.ts │ │ │ │ ├── onMessageCreate.ts │ │ │ │ ├── onMessageDelete.ts │ │ │ │ ├── onMessageDeleteBulk.ts │ │ │ │ └── scheduleNextDeletion.ts │ │ ├── AutoReactions │ │ │ ├── AutoReactionsPlugin.ts │ │ │ ├── commands │ │ │ │ ├── DisableAutoReactionsCmd.ts │ │ │ │ └── NewAutoReactionsCmd.ts │ │ │ ├── events │ │ │ │ └── AddReactionsEvt.ts │ │ │ └── types.ts │ │ ├── Automod │ │ │ ├── AutomodPlugin.ts │ │ │ ├── actions │ │ │ │ ├── addRoles.ts │ │ │ │ ├── addToCounter.ts │ │ │ │ ├── alert.ts │ │ │ │ ├── archiveThread.ts │ │ │ │ ├── availableActions.ts │ │ │ │ ├── ban.ts │ │ │ │ ├── changeNickname.ts │ │ │ │ ├── changePerms.ts │ │ │ │ ├── clean.ts │ │ │ │ ├── exampleAction.ts │ │ │ │ ├── kick.ts │ │ │ │ ├── log.ts │ │ │ │ ├── mute.ts │ │ │ │ ├── pauseInvites.ts │ │ │ │ ├── removeRoles.ts │ │ │ │ ├── reply.ts │ │ │ │ ├── setAntiraidLevel.ts │ │ │ │ ├── setCounter.ts │ │ │ │ ├── setSlowmode.ts │ │ │ │ ├── startThread.ts │ │ │ │ └── warn.ts │ │ │ ├── commands │ │ │ │ ├── AntiraidClearCmd.ts │ │ │ │ ├── SetAntiraidCmd.ts │ │ │ │ └── ViewAntiraidCmd.ts │ │ │ ├── constants.ts │ │ │ ├── events │ │ │ │ ├── RunAutomodOnJoinLeaveEvt.ts │ │ │ │ ├── RunAutomodOnMemberUpdate.ts │ │ │ │ ├── runAutomodOnAntiraidLevel.ts │ │ │ │ ├── runAutomodOnCounterTrigger.ts │ │ │ │ ├── runAutomodOnMessage.ts │ │ │ │ ├── runAutomodOnModAction.ts │ │ │ │ └── runAutomodOnThreadEvents.ts │ │ │ ├── functions │ │ │ │ ├── addRecentActionsFromMessage.ts │ │ │ │ ├── checkAndUpdateCooldown.ts │ │ │ │ ├── clearOldNicknameChanges.ts │ │ │ │ ├── clearOldRecentActions.ts │ │ │ │ ├── clearOldRecentSpam.ts │ │ │ │ ├── clearRecentActionsForMessage.ts │ │ │ │ ├── createMessageSpamTrigger.ts │ │ │ │ ├── findRecentSpam.ts │ │ │ │ ├── getMatchingMessageRecentActions.ts │ │ │ │ ├── getMatchingRecentActions.ts │ │ │ │ ├── getSpamIdentifier.ts │ │ │ │ ├── getTextMatchPartialSummary.ts │ │ │ │ ├── ignoredRoleChanges.ts │ │ │ │ ├── matchMultipleTextTypesOnMessage.ts │ │ │ │ ├── resolveActionContactMethods.ts │ │ │ │ ├── runAutomod.ts │ │ │ │ ├── setAntiraidLevel.ts │ │ │ │ └── sumRecentActionCounts.ts │ │ │ ├── helpers.ts │ │ │ ├── info.ts │ │ │ ├── triggers │ │ │ │ ├── antiraidLevel.ts │ │ │ │ ├── anyMessage.ts │ │ │ │ ├── attachmentSpam.ts │ │ │ │ ├── availableTriggers.ts │ │ │ │ ├── ban.ts │ │ │ │ ├── characterSpam.ts │ │ │ │ ├── counterTrigger.ts │ │ │ │ ├── emojiSpam.ts │ │ │ │ ├── exampleTrigger.ts │ │ │ │ ├── kick.ts │ │ │ │ ├── lineSpam.ts │ │ │ │ ├── linkSpam.ts │ │ │ │ ├── matchAttachmentType.ts │ │ │ │ ├── matchInvites.ts │ │ │ │ ├── matchLinks.ts │ │ │ │ ├── matchMimeType.ts │ │ │ │ ├── matchRegex.ts │ │ │ │ ├── matchWords.ts │ │ │ │ ├── memberJoin.ts │ │ │ │ ├── memberJoinSpam.ts │ │ │ │ ├── memberLeave.ts │ │ │ │ ├── mentionSpam.ts │ │ │ │ ├── messageSpam.ts │ │ │ │ ├── mute.ts │ │ │ │ ├── note.ts │ │ │ │ ├── roleAdded.ts │ │ │ │ ├── roleRemoved.ts │ │ │ │ ├── stickerSpam.ts │ │ │ │ ├── threadArchive.ts │ │ │ │ ├── threadCreate.ts │ │ │ │ ├── threadCreateSpam.ts │ │ │ │ ├── threadDelete.ts │ │ │ │ ├── threadUnarchive.ts │ │ │ │ ├── unban.ts │ │ │ │ ├── unmute.ts │ │ │ │ └── warn.ts │ │ │ └── types.ts │ │ ├── BotControl │ │ │ ├── BotControlPlugin.ts │ │ │ ├── activeReload.ts │ │ │ ├── commands │ │ │ │ ├── AddDashboardUserCmd.ts │ │ │ │ ├── AddServerFromInviteCmd.ts │ │ │ │ ├── AllowServerCmd.ts │ │ │ │ ├── ChannelToServerCmd.ts │ │ │ │ ├── DisallowServerCmd.ts │ │ │ │ ├── EligibleCmd.ts │ │ │ │ ├── LeaveServerCmd.ts │ │ │ │ ├── ListDashboardPermsCmd.ts │ │ │ │ ├── ListDashboardUsersCmd.ts │ │ │ │ ├── ProfilerDataCmd.ts │ │ │ │ ├── RateLimitPerformanceCmd.ts │ │ │ │ ├── ReloadGlobalPluginsCmd.ts │ │ │ │ ├── ReloadServerCmd.ts │ │ │ │ ├── RemoveDashboardUserCmd.ts │ │ │ │ ├── RestPerformanceCmd.ts │ │ │ │ └── ServersCmd.ts │ │ │ ├── functions │ │ │ │ └── isEligible.ts │ │ │ └── types.ts │ │ ├── Cases │ │ │ ├── CasesPlugin.ts │ │ │ ├── caseAbbreviations.ts │ │ │ ├── caseColors.ts │ │ │ ├── caseIcons.ts │ │ │ ├── functions │ │ │ │ ├── createCase.ts │ │ │ │ ├── createCaseNote.ts │ │ │ │ ├── getCaseColor.ts │ │ │ │ ├── getCaseEmbed.ts │ │ │ │ ├── getCaseIcon.ts │ │ │ │ ├── getCaseSummary.ts │ │ │ │ ├── getCaseTypeAmountForUserId.ts │ │ │ │ ├── getRecentCasesByMod.ts │ │ │ │ ├── getTotalCasesByMod.ts │ │ │ │ ├── postToCaseLogChannel.ts │ │ │ │ └── resolveCaseId.ts │ │ │ └── types.ts │ │ ├── Censor │ │ │ ├── CensorPlugin.ts │ │ │ ├── types.ts │ │ │ └── util │ │ │ │ ├── applyFiltersToMsg.ts │ │ │ │ ├── censorMessage.ts │ │ │ │ ├── onMessageCreate.ts │ │ │ │ └── onMessageUpdate.ts │ │ ├── ChannelArchiver │ │ │ ├── ChannelArchiverPlugin.ts │ │ │ ├── commands │ │ │ │ └── ArchiveChannelCmd.ts │ │ │ ├── rehostAttachment.ts │ │ │ └── types.ts │ │ ├── CompanionChannels │ │ │ ├── CompanionChannelsPlugin.ts │ │ │ ├── events │ │ │ │ └── VoiceStateUpdateEvt.ts │ │ │ ├── functions │ │ │ │ ├── getCompanionChannelOptsForVoiceChannelId.ts │ │ │ │ └── handleCompanionPermissions.ts │ │ │ └── types.ts │ │ ├── ContextMenus │ │ │ ├── ContextMenuPlugin.ts │ │ │ ├── actions │ │ │ │ ├── clean.ts │ │ │ │ ├── mute.ts │ │ │ │ └── userInfo.ts │ │ │ ├── events │ │ │ │ └── ContextClickedEvt.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── contextRouter.ts │ │ │ │ ├── hardcodedContextOptions.ts │ │ │ │ └── loadAllCommands.ts │ │ ├── Counters │ │ │ ├── CountersPlugin.ts │ │ │ ├── commands │ │ │ │ ├── AddCounterCmd.ts │ │ │ │ ├── CountersListCmd.ts │ │ │ │ ├── ResetAllCounterValuesCmd.ts │ │ │ │ ├── ResetCounterCmd.ts │ │ │ │ ├── SetCounterCmd.ts │ │ │ │ └── ViewCounterCmd.ts │ │ │ ├── functions │ │ │ │ ├── changeCounterValue.ts │ │ │ │ ├── checkAllValuesForReverseTrigger.ts │ │ │ │ ├── checkAllValuesForTrigger.ts │ │ │ │ ├── checkCounterTrigger.ts │ │ │ │ ├── checkReverseCounterTrigger.ts │ │ │ │ ├── counterExists.ts │ │ │ │ ├── decayCounter.ts │ │ │ │ ├── emitCounterEvent.ts │ │ │ │ ├── getPrettyNameForCounter.ts │ │ │ │ ├── getPrettyNameForCounterTrigger.ts │ │ │ │ ├── offCounterEvent.ts │ │ │ │ ├── onCounterEvent.ts │ │ │ │ ├── resetAllCounterValues.ts │ │ │ │ └── setCounterValue.ts │ │ │ └── types.ts │ │ ├── CustomEvents │ │ │ ├── ActionError.ts │ │ │ ├── CustomEventsPlugin.ts │ │ │ ├── actions │ │ │ │ ├── addRoleAction.ts │ │ │ │ ├── createCaseAction.ts │ │ │ │ ├── makeRoleMentionableAction.ts │ │ │ │ ├── makeRoleUnmentionableAction.ts │ │ │ │ ├── messageAction.ts │ │ │ │ ├── moveToVoiceChannelAction.ts │ │ │ │ └── setChannelPermissionOverrides.ts │ │ │ ├── functions │ │ │ │ └── runEvent.ts │ │ │ └── types.ts │ │ ├── GuildAccessMonitor │ │ │ └── GuildAccessMonitorPlugin.ts │ │ ├── GuildConfigReloader │ │ │ ├── GuildConfigReloaderPlugin.ts │ │ │ ├── functions │ │ │ │ └── reloadChangedGuilds.ts │ │ │ └── types.ts │ │ ├── GuildInfoSaver │ │ │ ├── GuildInfoSaverPlugin.ts │ │ │ └── types.ts │ │ ├── GuildMemberCache │ │ │ ├── GuildMemberCachePlugin.ts │ │ │ ├── events │ │ │ │ ├── cancelDeletionOnMemberJoin.ts │ │ │ │ ├── removeMemberCacheOnMemberLeave.ts │ │ │ │ ├── updateMemberCacheOnMemberUpdate.ts │ │ │ │ ├── updateMemberCacheOnMessage.ts │ │ │ │ ├── updateMemberCacheOnRoleChange.ts │ │ │ │ └── updateMemberCacheOnVoiceStateUpdate.ts │ │ │ ├── functions │ │ │ │ ├── getCachedMemberData.ts │ │ │ │ └── updateMemberCacheForMember.ts │ │ │ └── types.ts │ │ ├── InternalPoster │ │ │ ├── InternalPosterPlugin.ts │ │ │ ├── functions │ │ │ │ ├── editMessage.ts │ │ │ │ ├── getOrCreateWebhookClientForChannel.ts │ │ │ │ ├── getOrCreateWebhookForChannel.ts │ │ │ │ └── sendMessage.ts │ │ │ └── types.ts │ │ ├── LocateUser │ │ │ ├── LocateUserPlugin.ts │ │ │ ├── commands │ │ │ │ ├── FollowCmd.ts │ │ │ │ ├── ListFollowCmd.ts │ │ │ │ └── WhereCmd.ts │ │ │ ├── events │ │ │ │ ├── BanRemoveAlertsEvt.ts │ │ │ │ └── SendAlertsEvts.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── clearExpiredAlert.ts │ │ │ │ ├── createOrReuseInvite.ts │ │ │ │ ├── fillAlertsList.ts │ │ │ │ ├── moveMember.ts │ │ │ │ ├── removeUserIdFromActiveAlerts.ts │ │ │ │ ├── sendAlerts.ts │ │ │ │ └── sendWhere.ts │ │ ├── Logs │ │ │ ├── LogsPlugin.ts │ │ │ ├── events │ │ │ │ ├── LogsChannelModifyEvts.ts │ │ │ │ ├── LogsEmojiAndStickerModifyEvts.ts │ │ │ │ ├── LogsGuildBanEvts.ts │ │ │ │ ├── LogsGuildMemberAddEvt.ts │ │ │ │ ├── LogsGuildMemberRemoveEvt.ts │ │ │ │ ├── LogsGuildMemberRoleChangeEvt.ts │ │ │ │ ├── LogsRoleModifyEvts.ts │ │ │ │ ├── LogsStageInstanceModifyEvts.ts │ │ │ │ ├── LogsThreadModifyEvts.ts │ │ │ │ ├── LogsUserUpdateEvts.ts │ │ │ │ └── LogsVoiceChannelEvts.ts │ │ │ ├── logFunctions │ │ │ │ ├── logAutomodAction.ts │ │ │ │ ├── logBotAlert.ts │ │ │ │ ├── logCaseCreate.ts │ │ │ │ ├── logCaseDelete.ts │ │ │ │ ├── logCaseUpdate.ts │ │ │ │ ├── logCensor.ts │ │ │ │ ├── logChannelCreate.ts │ │ │ │ ├── logChannelDelete.ts │ │ │ │ ├── logChannelUpdate.ts │ │ │ │ ├── logClean.ts │ │ │ │ ├── logDmFailed.ts │ │ │ │ ├── logEmojiCreate.ts │ │ │ │ ├── logEmojiDelete.ts │ │ │ │ ├── logEmojiUpdate.ts │ │ │ │ ├── logMassBan.ts │ │ │ │ ├── logMassMute.ts │ │ │ │ ├── logMassUnban.ts │ │ │ │ ├── logMemberBan.ts │ │ │ │ ├── logMemberForceban.ts │ │ │ │ ├── logMemberJoin.ts │ │ │ │ ├── logMemberJoinWithPriorRecords.ts │ │ │ │ ├── logMemberKick.ts │ │ │ │ ├── logMemberLeave.ts │ │ │ │ ├── logMemberMute.ts │ │ │ │ ├── logMemberMuteExpired.ts │ │ │ │ ├── logMemberMuteRejoin.ts │ │ │ │ ├── logMemberNickChange.ts │ │ │ │ ├── logMemberNote.ts │ │ │ │ ├── logMemberRestore.ts │ │ │ │ ├── logMemberRoleAdd.ts │ │ │ │ ├── logMemberRoleChanges.ts │ │ │ │ ├── logMemberRoleRemove.ts │ │ │ │ ├── logMemberTimedBan.ts │ │ │ │ ├── logMemberTimedMute.ts │ │ │ │ ├── logMemberTimedUnban.ts │ │ │ │ ├── logMemberTimedUnmute.ts │ │ │ │ ├── logMemberUnban.ts │ │ │ │ ├── logMemberUnmute.ts │ │ │ │ ├── logMemberWarn.ts │ │ │ │ ├── logMessageDelete.ts │ │ │ │ ├── logMessageDeleteAuto.ts │ │ │ │ ├── logMessageDeleteBare.ts │ │ │ │ ├── logMessageDeleteBulk.ts │ │ │ │ ├── logMessageEdit.ts │ │ │ │ ├── logMessageSpamDetected.ts │ │ │ │ ├── logOtherSpamDetected.ts │ │ │ │ ├── logPostedScheduledMessage.ts │ │ │ │ ├── logRepeatedMessage.ts │ │ │ │ ├── logRoleCreate.ts │ │ │ │ ├── logRoleDelete.ts │ │ │ │ ├── logRoleUpdate.ts │ │ │ │ ├── logScheduledMessage.ts │ │ │ │ ├── logScheduledRepeatedMessage.ts │ │ │ │ ├── logSetAntiraidAuto.ts │ │ │ │ ├── logSetAntiraidUser.ts │ │ │ │ ├── logStageInstanceCreate.ts │ │ │ │ ├── logStageInstanceDelete.ts │ │ │ │ ├── logStageInstanceUpdate.ts │ │ │ │ ├── logStickerCreate.ts │ │ │ │ ├── logStickerDelete.ts │ │ │ │ ├── logStickerUpdate.ts │ │ │ │ ├── logThreadCreate.ts │ │ │ │ ├── logThreadDelete.ts │ │ │ │ ├── logThreadUpdate.ts │ │ │ │ ├── logVoiceChannelForceDisconnect.ts │ │ │ │ ├── logVoiceChannelForceMove.ts │ │ │ │ ├── logVoiceChannelJoin.ts │ │ │ │ ├── logVoiceChannelLeave.ts │ │ │ │ └── logVoiceChannelMove.ts │ │ │ ├── types.ts │ │ │ └── util │ │ │ │ ├── getLogMessage.ts │ │ │ │ ├── isLogIgnored.ts │ │ │ │ ├── log.ts │ │ │ │ ├── onMessageDelete.ts │ │ │ │ ├── onMessageDeleteBulk.ts │ │ │ │ └── onMessageUpdate.ts │ │ ├── MessageSaver │ │ │ ├── MessageSaverPlugin.ts │ │ │ ├── commands │ │ │ │ ├── SaveMessagesToDB.ts │ │ │ │ └── SavePinsToDB.ts │ │ │ ├── events │ │ │ │ └── SaveMessagesEvts.ts │ │ │ ├── saveMessagesToDB.ts │ │ │ └── types.ts │ │ ├── ModActions │ │ │ ├── ModActionsPlugin.ts │ │ │ ├── commands │ │ │ │ ├── AddCaseCmd.ts │ │ │ │ ├── BanCmd.ts │ │ │ │ ├── CaseCmd.ts │ │ │ │ ├── CasesModCmd.ts │ │ │ │ ├── CasesUserCmd.ts │ │ │ │ ├── DeleteCaseCmd.ts │ │ │ │ ├── ForcebanCmd.ts │ │ │ │ ├── ForcemuteCmd.ts │ │ │ │ ├── ForceunmuteCmd.ts │ │ │ │ ├── HideCaseCmd.ts │ │ │ │ ├── KickCmd.ts │ │ │ │ ├── MassBanCmd.ts │ │ │ │ ├── MassUnbanCmd.ts │ │ │ │ ├── MassmuteCmd.ts │ │ │ │ ├── MuteCmd.ts │ │ │ │ ├── NoteCmd.ts │ │ │ │ ├── SoftbanCommand.ts │ │ │ │ ├── UnbanCmd.ts │ │ │ │ ├── UnhideCaseCmd.ts │ │ │ │ ├── UnmuteCmd.ts │ │ │ │ ├── UpdateCmd.ts │ │ │ │ └── WarnCmd.ts │ │ │ ├── events │ │ │ │ ├── AuditLogEvents.ts │ │ │ │ ├── CreateBanCaseOnManualBanEvt.ts │ │ │ │ ├── CreateKickCaseOnManualKickEvt.ts │ │ │ │ ├── CreateUnbanCaseOnManualUnbanEvt.ts │ │ │ │ └── PostAlertOnMemberJoinEvt.ts │ │ │ ├── functions │ │ │ │ ├── actualKickMemberCmd.ts │ │ │ │ ├── actualMuteUserCmd.ts │ │ │ │ ├── actualUnmuteUserCmd.ts │ │ │ │ ├── banUserId.ts │ │ │ │ ├── clearIgnoredEvents.ts │ │ │ │ ├── clearTempban.ts │ │ │ │ ├── formatReasonWithAttachments.ts │ │ │ │ ├── getDefaultContactMethods.ts │ │ │ │ ├── hasMutePerm.ts │ │ │ │ ├── ignoreEvent.ts │ │ │ │ ├── isBanned.ts │ │ │ │ ├── isEventIgnored.ts │ │ │ │ ├── kickMember.ts │ │ │ │ ├── offModActionsEvent.ts │ │ │ │ ├── onModActionsEvent.ts │ │ │ │ ├── parseReason.ts │ │ │ │ ├── readContactMethodsFromArgs.ts │ │ │ │ ├── updateCase.ts │ │ │ │ └── warnMember.ts │ │ │ └── types.ts │ │ ├── Mutes │ │ │ ├── MutesPlugin.ts │ │ │ ├── commands │ │ │ │ ├── ClearBannedMutesCmd.ts │ │ │ │ ├── ClearMutesCmd.ts │ │ │ │ ├── ClearMutesWithoutRoleCmd.ts │ │ │ │ └── MutesCmd.ts │ │ │ ├── events │ │ │ │ ├── ClearActiveMuteOnMemberBanEvt.ts │ │ │ │ ├── ClearActiveMuteOnRoleRemovalEvt.ts │ │ │ │ ├── ReapplyActiveMuteOnJoinEvt.ts │ │ │ │ └── RegisterManualTimeoutsEvt.ts │ │ │ ├── functions │ │ │ │ ├── clearMute.ts │ │ │ │ ├── getDefaultMuteType.ts │ │ │ │ ├── getTimeoutExpiryTime.ts │ │ │ │ ├── memberHasMutedRole.ts │ │ │ │ ├── muteUser.ts │ │ │ │ ├── offMutesEvent.ts │ │ │ │ ├── onMutesEvent.ts │ │ │ │ ├── renewTimeoutMute.ts │ │ │ │ └── unmuteUser.ts │ │ │ └── types.ts │ │ ├── NameHistory │ │ │ ├── NameHistoryPlugin.ts │ │ │ ├── commands │ │ │ │ └── NamesCmd.ts │ │ │ ├── events │ │ │ │ └── UpdateNameEvts.ts │ │ │ ├── types.ts │ │ │ └── updateNickname.ts │ │ ├── Persist │ │ │ ├── PersistPlugin.ts │ │ │ ├── events │ │ │ │ ├── LoadDataEvt.ts │ │ │ │ └── StoreDataEvt.ts │ │ │ └── types.ts │ │ ├── Phisherman │ │ │ ├── PhishermanPlugin.ts │ │ │ ├── functions │ │ │ │ └── getDomainInfo.ts │ │ │ ├── info.ts │ │ │ └── types.ts │ │ ├── PingableRoles │ │ │ ├── PingableRolesPlugin.ts │ │ │ ├── commands │ │ │ │ ├── PingableRoleDisableCmd.ts │ │ │ │ └── PingableRoleEnableCmd.ts │ │ │ ├── events │ │ │ │ └── ChangePingableEvts.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── disablePingableRoles.ts │ │ │ │ ├── enablePingableRoles.ts │ │ │ │ └── getPingableRolesForChannel.ts │ │ ├── Post │ │ │ ├── PostPlugin.ts │ │ │ ├── commands │ │ │ │ ├── EditCmd.ts │ │ │ │ ├── EditEmbedCmd.ts │ │ │ │ ├── PostCmd.ts │ │ │ │ ├── PostEmbedCmd.ts │ │ │ │ ├── ScheduledPostsDeleteCmd.ts │ │ │ │ ├── ScheduledPostsListCmd.ts │ │ │ │ └── ScheduledPostsShowCmd.ts │ │ │ ├── types.ts │ │ │ └── util │ │ │ │ ├── actualPostCmd.ts │ │ │ │ ├── formatContent.ts │ │ │ │ ├── parseScheduleTime.ts │ │ │ │ ├── postMessage.ts │ │ │ │ └── postScheduledPost.ts │ │ ├── ReactionRoles │ │ │ ├── ReactionRolesPlugin.ts │ │ │ ├── commands │ │ │ │ ├── ClearReactionRolesCmd.ts │ │ │ │ ├── InitReactionRolesCmd.ts │ │ │ │ └── RefreshReactionRolesCmd.ts │ │ │ ├── events │ │ │ │ ├── AddReactionRoleEvt.ts │ │ │ │ └── MessageDeletedEvt.ts │ │ │ ├── types.ts │ │ │ └── util │ │ │ │ ├── addMemberPendingRoleChange.ts │ │ │ │ ├── applyReactionRoleReactionsToMessage.ts │ │ │ │ ├── autoRefreshLoop.ts │ │ │ │ ├── refreshReactionRoles.ts │ │ │ │ └── runAutoRefresh.ts │ │ ├── Reminders │ │ │ ├── RemindersPlugin.ts │ │ │ ├── commands │ │ │ │ ├── RemindCmd.ts │ │ │ │ ├── RemindersCmd.ts │ │ │ │ └── RemindersDeleteCmd.ts │ │ │ ├── functions │ │ │ │ └── postReminder.ts │ │ │ └── types.ts │ │ ├── RoleButtons │ │ │ ├── RoleButtonsPlugin.ts │ │ │ ├── commands │ │ │ │ └── resetButtons.ts │ │ │ ├── events │ │ │ │ └── buttonInteraction.ts │ │ │ ├── functions │ │ │ │ ├── TooManyComponentsError.ts │ │ │ │ ├── applyAllRoleButtons.ts │ │ │ │ ├── applyRoleButtons.ts │ │ │ │ ├── convertButtonStyleStringToEnum.ts │ │ │ │ ├── createButtonComponents.ts │ │ │ │ └── getAllRolesInButtons.ts │ │ │ ├── info.ts │ │ │ └── types.ts │ │ ├── RoleManager │ │ │ ├── RoleManagerPlugin.ts │ │ │ ├── constants.ts │ │ │ ├── functions │ │ │ │ ├── addPriorityRole.ts │ │ │ │ ├── addRole.ts │ │ │ │ ├── removePriorityRole.ts │ │ │ │ ├── removeRole.ts │ │ │ │ └── runRoleAssignmentLoop.ts │ │ │ └── types.ts │ │ ├── Roles │ │ │ ├── RolesPlugin.ts │ │ │ ├── commands │ │ │ │ ├── AddRoleCmd.ts │ │ │ │ ├── MassAddRoleCmd.ts │ │ │ │ ├── MassRemoveRoleCmd.ts │ │ │ │ └── RemoveRoleCmd.ts │ │ │ └── types.ts │ │ ├── SelfGrantableRoles │ │ │ ├── SelfGrantableRolesPlugin.ts │ │ │ ├── commands │ │ │ │ ├── RoleAddCmd.ts │ │ │ │ ├── RoleHelpCmd.ts │ │ │ │ └── RoleRemoveCmd.ts │ │ │ ├── types.ts │ │ │ └── util │ │ │ │ ├── findMatchingRoles.ts │ │ │ │ ├── getApplyingEntries.ts │ │ │ │ ├── normalizeRoleNames.ts │ │ │ │ └── splitRoleNames.ts │ │ ├── Slowmode │ │ │ ├── SlowmodePlugin.ts │ │ │ ├── commands │ │ │ │ ├── SlowmodeClearCmd.ts │ │ │ │ ├── SlowmodeDisableCmd.ts │ │ │ │ ├── SlowmodeGetCmd.ts │ │ │ │ ├── SlowmodeListCmd.ts │ │ │ │ └── SlowmodeSetCmd.ts │ │ │ ├── requiredPermissions.ts │ │ │ ├── types.ts │ │ │ └── util │ │ │ │ ├── actualDisableSlowmodeCmd.ts │ │ │ │ ├── applyBotSlowmodeToUserId.ts │ │ │ │ ├── clearBotSlowmodeFromUserId.ts │ │ │ │ ├── clearExpiredSlowmodes.ts │ │ │ │ ├── disableBotSlowmodeForChannel.ts │ │ │ │ └── onMessageCreate.ts │ │ ├── Spam │ │ │ ├── SpamPlugin.ts │ │ │ ├── events │ │ │ │ └── SpamVoiceEvt.ts │ │ │ ├── types.ts │ │ │ └── util │ │ │ │ ├── addRecentAction.ts │ │ │ │ ├── clearOldRecentActions.ts │ │ │ │ ├── clearRecentUserActions.ts │ │ │ │ ├── getRecentActionCount.ts │ │ │ │ ├── getRecentActions.ts │ │ │ │ ├── logAndDetectMessageSpam.ts │ │ │ │ ├── logAndDetectOtherSpam.ts │ │ │ │ ├── logCensor.ts │ │ │ │ ├── onMessageCreate.ts │ │ │ │ └── saveSpamArchives.ts │ │ ├── Starboard │ │ │ ├── StarboardPlugin.ts │ │ │ ├── commands │ │ │ │ └── MigratePinsCmd.ts │ │ │ ├── events │ │ │ │ ├── StarboardReactionAddEvt.ts │ │ │ │ └── StarboardReactionRemoveEvts.ts │ │ │ ├── types.ts │ │ │ └── util │ │ │ │ ├── createStarboardEmbedFromMessage.ts │ │ │ │ ├── createStarboardPseudoFooterForMessage.ts │ │ │ │ ├── onMessageDelete.ts │ │ │ │ ├── preprocessStaticConfig.ts │ │ │ │ ├── removeMessageFromStarboard.ts │ │ │ │ ├── removeMessageFromStarboardMessages.ts │ │ │ │ ├── saveMessageToStarboard.ts │ │ │ │ └── updateStarboardMessageStarCount.ts │ │ ├── Tags │ │ │ ├── TagsPlugin.ts │ │ │ ├── commands │ │ │ │ ├── TagCreateCmd.ts │ │ │ │ ├── TagDeleteCmd.ts │ │ │ │ ├── TagEvalCmd.ts │ │ │ │ ├── TagListCmd.ts │ │ │ │ └── TagSourceCmd.ts │ │ │ ├── docs.ts │ │ │ ├── templateFunctions.ts │ │ │ ├── types.ts │ │ │ └── util │ │ │ │ ├── findTagByName.ts │ │ │ │ ├── matchAndRenderTagFromString.ts │ │ │ │ ├── onMessageCreate.ts │ │ │ │ ├── onMessageDelete.ts │ │ │ │ ├── renderTagBody.ts │ │ │ │ └── renderTagFromString.ts │ │ ├── TimeAndDate │ │ │ ├── TimeAndDatePlugin.ts │ │ │ ├── commands │ │ │ │ ├── ResetTimezoneCmd.ts │ │ │ │ ├── SetTimezoneCmd.ts │ │ │ │ └── ViewTimezoneCmd.ts │ │ │ ├── defaultDateFormats.ts │ │ │ ├── functions │ │ │ │ ├── getDateFormat.ts │ │ │ │ ├── getGuildTz.ts │ │ │ │ ├── getMemberTz.ts │ │ │ │ ├── inGuildTz.ts │ │ │ │ └── inMemberTz.ts │ │ │ └── types.ts │ │ ├── UsernameSaver │ │ │ ├── UsernameSaverPlugin.ts │ │ │ ├── events │ │ │ │ └── UpdateUsernameEvts.ts │ │ │ ├── types.ts │ │ │ └── updateUsername.ts │ │ ├── Utility │ │ │ ├── UtilityPlugin.ts │ │ │ ├── commands │ │ │ │ ├── AboutCmd.ts │ │ │ │ ├── AvatarCmd.ts │ │ │ │ ├── BanSearchCmd.ts │ │ │ │ ├── ChannelInfoCmd.ts │ │ │ │ ├── CleanCmd.ts │ │ │ │ ├── ContextCmd.ts │ │ │ │ ├── EmojiInfoCmd.ts │ │ │ │ ├── HelpCmd.ts │ │ │ │ ├── InfoCmd.ts │ │ │ │ ├── InviteInfoCmd.ts │ │ │ │ ├── JumboCmd.ts │ │ │ │ ├── LevelCmd.ts │ │ │ │ ├── MessageInfoCmd.ts │ │ │ │ ├── NicknameCmd.ts │ │ │ │ ├── NicknameResetCmd.ts │ │ │ │ ├── PingCmd.ts │ │ │ │ ├── ReloadGuildCmd.ts │ │ │ │ ├── RoleInfoCmd.ts │ │ │ │ ├── RolesCmd.ts │ │ │ │ ├── SearchCmd.ts │ │ │ │ ├── ServerInfoCmd.ts │ │ │ │ ├── SnowflakeInfoCmd.ts │ │ │ │ ├── SourceCmd.ts │ │ │ │ ├── UserInfoCmd.ts │ │ │ │ ├── VcdisconnectCmd.ts │ │ │ │ └── VcmoveCmd.ts │ │ │ ├── events │ │ │ │ └── AutoJoinThreadEvt.ts │ │ │ ├── functions │ │ │ │ ├── getChannelInfoEmbed.ts │ │ │ │ ├── getCustomEmojiId.ts │ │ │ │ ├── getEmojiInfoEmbed.ts │ │ │ │ ├── getGuildPreview.ts │ │ │ │ ├── getInviteInfoEmbed.ts │ │ │ │ ├── getMessageInfoEmbed.ts │ │ │ │ ├── getRoleInfoEmbed.ts │ │ │ │ ├── getServerInfoEmbed.ts │ │ │ │ ├── getSnowflakeInfoEmbed.ts │ │ │ │ ├── getUserInfoEmbed.ts │ │ │ │ └── hasPermission.ts │ │ │ ├── guildReloads.ts │ │ │ ├── refreshMembers.ts │ │ │ ├── search.ts │ │ │ └── types.ts │ │ ├── WelcomeMessage │ │ │ ├── WelcomeMessagePlugin.ts │ │ │ ├── events │ │ │ │ └── SendWelcomeMessageEvt.ts │ │ │ └── types.ts │ │ ├── ZeppelinPlugin.ts │ │ ├── ZeppelinPluginBlueprint.ts │ │ └── availablePlugins.ts │ ├── profiler.ts │ ├── rateLimitStats.ts │ ├── regExpRunners.ts │ ├── restCallStats.ts │ ├── staff.ts │ ├── templateFormatter.test.ts │ ├── templateFormatter.ts │ ├── threadsSignalFix.ts │ ├── types.ts │ ├── uptime.ts │ ├── utils.test.ts │ ├── utils.ts │ ├── utils │ │ ├── DecayingCounter.ts │ │ ├── MessageBuffer.ts │ │ ├── async.ts │ │ ├── buildCustomId.ts │ │ ├── calculateEmbedSize.ts │ │ ├── canAssignRole.ts │ │ ├── canReadChannel.ts │ │ ├── categorize.ts │ │ ├── createPaginatedMessage.ts │ │ ├── crypt.test.ts │ │ ├── crypt.ts │ │ ├── cryptHelpers.ts │ │ ├── cryptWorker.ts │ │ ├── easyProfiler.ts │ │ ├── erisAllowedMentionsToDjsMentionOptions.ts │ │ ├── filterObject.ts │ │ ├── findMatchingAuditLogEntry.ts │ │ ├── getChunkedEmbedFields.ts │ │ ├── getGuildPrefix.ts │ │ ├── getMissingChannelPermissions.ts │ │ ├── getMissingPermissions.ts │ │ ├── getPermissionNames.ts │ │ ├── hasDiscordPermissions.ts │ │ ├── idToTimestamp.ts │ │ ├── intToRgb.ts │ │ ├── isDefaultSticker.ts │ │ ├── isDmChannel.ts │ │ ├── isGuildChannel.ts │ │ ├── isScalar.ts │ │ ├── isThreadChannel.ts │ │ ├── isValidTimezone.ts │ │ ├── loadYamlSafely.ts │ │ ├── lockNameHelpers.ts │ │ ├── mergeRegexes.ts │ │ ├── mergeWordsIntoRegex.ts │ │ ├── messageHasContent.ts │ │ ├── messageIsEmpty.ts │ │ ├── missingPermissionError.ts │ │ ├── normalizeText.test.ts │ │ ├── normalizeText.ts │ │ ├── parseColor.ts │ │ ├── parseCustomId.ts │ │ ├── parseFuzzyTimezone.ts │ │ ├── permissionNames.ts │ │ ├── readChannelPermissions.ts │ │ ├── registerEventListenersFromMap.ts │ │ ├── resolveChannelIds.ts │ │ ├── resolveMessageTarget.ts │ │ ├── rgbToInt.ts │ │ ├── sendDM.ts │ │ ├── snowflakeToTimestamp.ts │ │ ├── stripMarkdown.ts │ │ ├── tColor.ts │ │ ├── tValidTimezone.ts │ │ ├── templateSafeObjects.ts │ │ ├── typeUtils.ts │ │ ├── unregisterEventListenersFromMap.ts │ │ ├── validateNoObjectAliases.test.ts │ │ ├── validateNoObjectAliases.ts │ │ └── waitForInteraction.ts │ ├── validation.test.ts │ ├── validatorUtils.ts │ └── yamlParseTest.ts ├── start-dev.js └── tsconfig.json ├── dashboard ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .htmlnanorc.js ├── .prettierignore ├── package-lock.json ├── package.json ├── src │ ├── api.ts │ ├── auth.ts │ ├── components │ │ ├── App.vue │ │ ├── Expandable.vue │ │ ├── PrivacyPolicy.vue │ │ ├── Tab.vue │ │ ├── Tabs.vue │ │ ├── Title.vue │ │ ├── dashboard │ │ │ ├── GuildAccess.vue │ │ │ ├── GuildConfigEditor.vue │ │ │ ├── GuildImportExport.vue │ │ │ ├── GuildInfo.vue │ │ │ ├── GuildList.vue │ │ │ ├── Layout.vue │ │ │ ├── PermissionTree.vue │ │ │ └── permissionTreeUtils.ts │ │ └── docs │ │ │ ├── ArgumentTypes.vue │ │ │ ├── CodeBlock.vue │ │ │ ├── ConfigurationFormat.vue │ │ │ ├── Counters.vue │ │ │ ├── DocsLayout.vue │ │ │ ├── Introduction.vue │ │ │ ├── MarkdownBlock.vue │ │ │ ├── Permissions.vue │ │ │ ├── Plugin.vue │ │ │ ├── PluginConfiguration.vue │ │ │ └── WorkInProgress.vue │ ├── directives │ │ └── trim-indents.ts │ ├── img │ │ ├── logo.png │ │ └── squint.png │ ├── index.html │ ├── init-vue.ts │ ├── main.ts │ ├── routes.ts │ ├── splash.html │ ├── store │ │ ├── auth.ts │ │ ├── docs.ts │ │ ├── guilds.ts │ │ ├── index.ts │ │ ├── staff.ts │ │ └── types.ts │ └── style │ │ ├── app.pcss │ │ ├── base.pcss │ │ ├── components.pcss │ │ ├── content.pcss │ │ ├── docs.pcss │ │ ├── initial.pcss │ │ ├── privacy-policy.pcss │ │ ├── reset.pcss │ │ └── splash.pcss ├── tailwind.config.js ├── ts-vue-shim.d.ts ├── tsconfig.json └── webpack.config.js ├── debug └── .gitignore ├── dependabot.yml ├── docker-compose.ben.yml ├── docker-compose.development.yml ├── docker-compose.production.yml ├── docker ├── development │ ├── data │ │ └── mysql │ │ │ └── .gitignore │ ├── devenv │ │ └── Dockerfile │ └── nginx │ │ ├── Dockerfile │ │ └── default.conf └── production │ ├── backend │ └── Dockerfile │ ├── config │ └── mysql.conf.d │ │ └── .gitignore │ ├── data │ └── mysql │ │ └── .gitignore │ ├── nginx-insecure │ ├── Dockerfile │ └── default.conf │ ├── nginx │ ├── Dockerfile │ └── default.conf │ └── start-bot.sh ├── package.json ├── presetup-configurator ├── .gitignore ├── .prettierignore ├── package-lock.json ├── package.json ├── snowpack.config.js ├── src │ ├── App.css │ ├── App.tsx │ ├── Configurator.css │ ├── Configurator.tsx │ ├── Levels.tsx │ ├── LogChannels.css │ ├── LogChannels.tsx │ ├── index.css │ ├── index.html │ └── index.tsx └── tsconfig.json ├── shared ├── package-lock.json ├── package.json ├── src │ ├── apiPermissions.test.ts │ └── apiPermissions.ts └── tsconfig.json └── update.sh /.clabot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/.clabot -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/codequality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/.github/workflows/codequality.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .github 2 | .idea 3 | node_modules 4 | /assets 5 | /debug 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/.prettierrc -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANAGEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/MANAGEMENT.md -------------------------------------------------------------------------------- /PRODUCTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/PRODUCTION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/README.md -------------------------------------------------------------------------------- /assets/icons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/LICENSE -------------------------------------------------------------------------------- /assets/icons/announcement-channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/announcement-channel.png -------------------------------------------------------------------------------- /assets/icons/announcement-channel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/announcement-channel.svg -------------------------------------------------------------------------------- /assets/icons/case_ban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/case_ban.png -------------------------------------------------------------------------------- /assets/icons/case_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/case_deleted.png -------------------------------------------------------------------------------- /assets/icons/case_icons.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/case_icons.afphoto -------------------------------------------------------------------------------- /assets/icons/case_kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/case_kick.png -------------------------------------------------------------------------------- /assets/icons/case_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/case_mute.png -------------------------------------------------------------------------------- /assets/icons/case_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/case_note.png -------------------------------------------------------------------------------- /assets/icons/case_softban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/case_softban.png -------------------------------------------------------------------------------- /assets/icons/case_unban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/case_unban.png -------------------------------------------------------------------------------- /assets/icons/case_unmute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/case_unmute.png -------------------------------------------------------------------------------- /assets/icons/case_warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/case_warn.png -------------------------------------------------------------------------------- /assets/icons/memo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/memo.svg -------------------------------------------------------------------------------- /assets/icons/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/message.png -------------------------------------------------------------------------------- /assets/icons/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/message.svg -------------------------------------------------------------------------------- /assets/icons/snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/snowflake.png -------------------------------------------------------------------------------- /assets/icons/snowflake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/snowflake.svg -------------------------------------------------------------------------------- /assets/icons/text-channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/text-channel.png -------------------------------------------------------------------------------- /assets/icons/text-channel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/text-channel.svg -------------------------------------------------------------------------------- /assets/icons/voice-channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/voice-channel.png -------------------------------------------------------------------------------- /assets/icons/voice-channel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/icons/voice-channel.svg -------------------------------------------------------------------------------- /assets/zepbanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/assets/zepbanner.png -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | /.cache 2 | /dist 3 | /node_modules 4 | -------------------------------------------------------------------------------- /backend/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/register-tsconfig-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/register-tsconfig-paths.js -------------------------------------------------------------------------------- /backend/src/Blocker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/Blocker.ts -------------------------------------------------------------------------------- /backend/src/DiscordJSError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/DiscordJSError.ts -------------------------------------------------------------------------------- /backend/src/Queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/Queue.ts -------------------------------------------------------------------------------- /backend/src/QueuedEventEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/QueuedEventEmitter.ts -------------------------------------------------------------------------------- /backend/src/RecoverablePluginError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/RecoverablePluginError.ts -------------------------------------------------------------------------------- /backend/src/RegExpRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/RegExpRunner.ts -------------------------------------------------------------------------------- /backend/src/SimpleCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/SimpleCache.ts -------------------------------------------------------------------------------- /backend/src/SimpleError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/SimpleError.ts -------------------------------------------------------------------------------- /backend/src/api/archives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/archives.ts -------------------------------------------------------------------------------- /backend/src/api/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/auth.ts -------------------------------------------------------------------------------- /backend/src/api/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/docs.ts -------------------------------------------------------------------------------- /backend/src/api/guilds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/guilds.ts -------------------------------------------------------------------------------- /backend/src/api/guilds/importExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/guilds/importExport.ts -------------------------------------------------------------------------------- /backend/src/api/guilds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/guilds/index.ts -------------------------------------------------------------------------------- /backend/src/api/guilds/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/guilds/misc.ts -------------------------------------------------------------------------------- /backend/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/index.ts -------------------------------------------------------------------------------- /backend/src/api/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/permissions.ts -------------------------------------------------------------------------------- /backend/src/api/rateLimits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/rateLimits.ts -------------------------------------------------------------------------------- /backend/src/api/responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/responses.ts -------------------------------------------------------------------------------- /backend/src/api/staff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/staff.ts -------------------------------------------------------------------------------- /backend/src/api/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/start.ts -------------------------------------------------------------------------------- /backend/src/api/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/api/tasks.ts -------------------------------------------------------------------------------- /backend/src/commandTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/commandTypes.ts -------------------------------------------------------------------------------- /backend/src/configValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/configValidator.ts -------------------------------------------------------------------------------- /backend/src/data/AllowedGuilds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/AllowedGuilds.ts -------------------------------------------------------------------------------- /backend/src/data/ApiAuditLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/ApiAuditLog.ts -------------------------------------------------------------------------------- /backend/src/data/ApiLogins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/ApiLogins.ts -------------------------------------------------------------------------------- /backend/src/data/ApiPermissionAssignments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/ApiPermissionAssignments.ts -------------------------------------------------------------------------------- /backend/src/data/ApiUserInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/ApiUserInfo.ts -------------------------------------------------------------------------------- /backend/src/data/Archives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/Archives.ts -------------------------------------------------------------------------------- /backend/src/data/BaseGuildRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/BaseGuildRepository.ts -------------------------------------------------------------------------------- /backend/src/data/BaseRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/BaseRepository.ts -------------------------------------------------------------------------------- /backend/src/data/CaseTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/CaseTypes.ts -------------------------------------------------------------------------------- /backend/src/data/Configs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/Configs.ts -------------------------------------------------------------------------------- /backend/src/data/DefaultLogMessages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/DefaultLogMessages.json -------------------------------------------------------------------------------- /backend/src/data/GuildAntiraidLevels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildAntiraidLevels.ts -------------------------------------------------------------------------------- /backend/src/data/GuildArchives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildArchives.ts -------------------------------------------------------------------------------- /backend/src/data/GuildAutoReactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildAutoReactions.ts -------------------------------------------------------------------------------- /backend/src/data/GuildButtonRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildButtonRoles.ts -------------------------------------------------------------------------------- /backend/src/data/GuildCases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildCases.ts -------------------------------------------------------------------------------- /backend/src/data/GuildContextMenuLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildContextMenuLinks.ts -------------------------------------------------------------------------------- /backend/src/data/GuildCounters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildCounters.ts -------------------------------------------------------------------------------- /backend/src/data/GuildEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildEvents.ts -------------------------------------------------------------------------------- /backend/src/data/GuildLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildLogs.ts -------------------------------------------------------------------------------- /backend/src/data/GuildMemberCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildMemberCache.ts -------------------------------------------------------------------------------- /backend/src/data/GuildMemberTimezones.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildMemberTimezones.ts -------------------------------------------------------------------------------- /backend/src/data/GuildMutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildMutes.ts -------------------------------------------------------------------------------- /backend/src/data/GuildNicknameHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildNicknameHistory.ts -------------------------------------------------------------------------------- /backend/src/data/GuildPersistedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildPersistedData.ts -------------------------------------------------------------------------------- /backend/src/data/GuildPingableRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildPingableRoles.ts -------------------------------------------------------------------------------- /backend/src/data/GuildReactionRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildReactionRoles.ts -------------------------------------------------------------------------------- /backend/src/data/GuildReminders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildReminders.ts -------------------------------------------------------------------------------- /backend/src/data/GuildRoleButtons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildRoleButtons.ts -------------------------------------------------------------------------------- /backend/src/data/GuildRoleQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildRoleQueue.ts -------------------------------------------------------------------------------- /backend/src/data/GuildSavedMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildSavedMessages.ts -------------------------------------------------------------------------------- /backend/src/data/GuildScheduledPosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildScheduledPosts.ts -------------------------------------------------------------------------------- /backend/src/data/GuildSlowmodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildSlowmodes.ts -------------------------------------------------------------------------------- /backend/src/data/GuildStarboardMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildStarboardMessages.ts -------------------------------------------------------------------------------- /backend/src/data/GuildStarboardReactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildStarboardReactions.ts -------------------------------------------------------------------------------- /backend/src/data/GuildStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildStats.ts -------------------------------------------------------------------------------- /backend/src/data/GuildTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildTags.ts -------------------------------------------------------------------------------- /backend/src/data/GuildTempbans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildTempbans.ts -------------------------------------------------------------------------------- /backend/src/data/GuildVCAlerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/GuildVCAlerts.ts -------------------------------------------------------------------------------- /backend/src/data/LogType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/LogType.ts -------------------------------------------------------------------------------- /backend/src/data/MemberCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/MemberCache.ts -------------------------------------------------------------------------------- /backend/src/data/MuteTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/MuteTypes.ts -------------------------------------------------------------------------------- /backend/src/data/Mutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/Mutes.ts -------------------------------------------------------------------------------- /backend/src/data/Phisherman.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/Phisherman.ts -------------------------------------------------------------------------------- /backend/src/data/Reminders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/Reminders.ts -------------------------------------------------------------------------------- /backend/src/data/ScheduledPosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/ScheduledPosts.ts -------------------------------------------------------------------------------- /backend/src/data/Supporters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/Supporters.ts -------------------------------------------------------------------------------- /backend/src/data/Tempbans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/Tempbans.ts -------------------------------------------------------------------------------- /backend/src/data/UsernameHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/UsernameHistory.ts -------------------------------------------------------------------------------- /backend/src/data/VCAlerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/VCAlerts.ts -------------------------------------------------------------------------------- /backend/src/data/Webhooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/Webhooks.ts -------------------------------------------------------------------------------- /backend/src/data/Zalgo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/Zalgo.ts -------------------------------------------------------------------------------- /backend/src/data/apiAuditLogTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/apiAuditLogTypes.ts -------------------------------------------------------------------------------- /backend/src/data/buildEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/buildEntity.ts -------------------------------------------------------------------------------- /backend/src/data/cleanup/configs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/cleanup/configs.ts -------------------------------------------------------------------------------- /backend/src/data/cleanup/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/cleanup/messages.ts -------------------------------------------------------------------------------- /backend/src/data/cleanup/nicknames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/cleanup/nicknames.ts -------------------------------------------------------------------------------- /backend/src/data/cleanup/usernames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/cleanup/usernames.ts -------------------------------------------------------------------------------- /backend/src/data/dataSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/dataSource.ts -------------------------------------------------------------------------------- /backend/src/data/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/db.ts -------------------------------------------------------------------------------- /backend/src/data/entities/AllowedGuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/AllowedGuild.ts -------------------------------------------------------------------------------- /backend/src/data/entities/AntiraidLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/AntiraidLevel.ts -------------------------------------------------------------------------------- /backend/src/data/entities/ApiAuditLogEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/ApiAuditLogEntry.ts -------------------------------------------------------------------------------- /backend/src/data/entities/ApiLogin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/ApiLogin.ts -------------------------------------------------------------------------------- /backend/src/data/entities/ApiPermissionAssignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/ApiPermissionAssignment.ts -------------------------------------------------------------------------------- /backend/src/data/entities/ApiUserInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/ApiUserInfo.ts -------------------------------------------------------------------------------- /backend/src/data/entities/ArchiveEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/ArchiveEntry.ts -------------------------------------------------------------------------------- /backend/src/data/entities/AutoReaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/AutoReaction.ts -------------------------------------------------------------------------------- /backend/src/data/entities/ButtonRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/ButtonRole.ts -------------------------------------------------------------------------------- /backend/src/data/entities/Case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/Case.ts -------------------------------------------------------------------------------- /backend/src/data/entities/CaseNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/CaseNote.ts -------------------------------------------------------------------------------- /backend/src/data/entities/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/Config.ts -------------------------------------------------------------------------------- /backend/src/data/entities/ContextMenuLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/ContextMenuLink.ts -------------------------------------------------------------------------------- /backend/src/data/entities/Counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/Counter.ts -------------------------------------------------------------------------------- /backend/src/data/entities/CounterTrigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/CounterTrigger.ts -------------------------------------------------------------------------------- /backend/src/data/entities/CounterTriggerState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/CounterTriggerState.ts -------------------------------------------------------------------------------- /backend/src/data/entities/CounterValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/CounterValue.ts -------------------------------------------------------------------------------- /backend/src/data/entities/MemberCacheItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/MemberCacheItem.ts -------------------------------------------------------------------------------- /backend/src/data/entities/MemberTimezone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/MemberTimezone.ts -------------------------------------------------------------------------------- /backend/src/data/entities/Mute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/Mute.ts -------------------------------------------------------------------------------- /backend/src/data/entities/NicknameHistoryEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/NicknameHistoryEntry.ts -------------------------------------------------------------------------------- /backend/src/data/entities/PersistedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/PersistedData.ts -------------------------------------------------------------------------------- /backend/src/data/entities/PhishermanCacheEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/PhishermanCacheEntry.ts -------------------------------------------------------------------------------- /backend/src/data/entities/PhishermanKeyCacheEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/PhishermanKeyCacheEntry.ts -------------------------------------------------------------------------------- /backend/src/data/entities/PingableRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/PingableRole.ts -------------------------------------------------------------------------------- /backend/src/data/entities/ReactionRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/ReactionRole.ts -------------------------------------------------------------------------------- /backend/src/data/entities/Reminder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/Reminder.ts -------------------------------------------------------------------------------- /backend/src/data/entities/RoleButtonsItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/RoleButtonsItem.ts -------------------------------------------------------------------------------- /backend/src/data/entities/RoleQueueItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/RoleQueueItem.ts -------------------------------------------------------------------------------- /backend/src/data/entities/SavedMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/SavedMessage.ts -------------------------------------------------------------------------------- /backend/src/data/entities/ScheduledPost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/ScheduledPost.ts -------------------------------------------------------------------------------- /backend/src/data/entities/SlowmodeChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/SlowmodeChannel.ts -------------------------------------------------------------------------------- /backend/src/data/entities/SlowmodeUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/SlowmodeUser.ts -------------------------------------------------------------------------------- /backend/src/data/entities/StarboardMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/StarboardMessage.ts -------------------------------------------------------------------------------- /backend/src/data/entities/StarboardReaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/StarboardReaction.ts -------------------------------------------------------------------------------- /backend/src/data/entities/StatValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/StatValue.ts -------------------------------------------------------------------------------- /backend/src/data/entities/Supporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/Supporter.ts -------------------------------------------------------------------------------- /backend/src/data/entities/Tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/Tag.ts -------------------------------------------------------------------------------- /backend/src/data/entities/TagResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/TagResponse.ts -------------------------------------------------------------------------------- /backend/src/data/entities/Tempban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/Tempban.ts -------------------------------------------------------------------------------- /backend/src/data/entities/UsernameHistoryEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/UsernameHistoryEntry.ts -------------------------------------------------------------------------------- /backend/src/data/entities/VCAlert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/VCAlert.ts -------------------------------------------------------------------------------- /backend/src/data/entities/Webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/entities/Webhook.ts -------------------------------------------------------------------------------- /backend/src/data/getChannelIdFromMessageId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/getChannelIdFromMessageId.ts -------------------------------------------------------------------------------- /backend/src/data/loops/expiredArchiveDeletionLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/loops/expiredArchiveDeletionLoop.ts -------------------------------------------------------------------------------- /backend/src/data/loops/expiredMemberCacheDeletionLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/loops/expiredMemberCacheDeletionLoop.ts -------------------------------------------------------------------------------- /backend/src/data/loops/expiringMutesLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/loops/expiringMutesLoop.ts -------------------------------------------------------------------------------- /backend/src/data/loops/expiringTempbansLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/loops/expiringTempbansLoop.ts -------------------------------------------------------------------------------- /backend/src/data/loops/expiringVCAlertsLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/loops/expiringVCAlertsLoop.ts -------------------------------------------------------------------------------- /backend/src/data/loops/memberCacheDeletionLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/loops/memberCacheDeletionLoop.ts -------------------------------------------------------------------------------- /backend/src/data/loops/phishermanLoops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/loops/phishermanLoops.ts -------------------------------------------------------------------------------- /backend/src/data/loops/savedMessageCleanupLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/loops/savedMessageCleanupLoop.ts -------------------------------------------------------------------------------- /backend/src/data/loops/upcomingRemindersLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/loops/upcomingRemindersLoop.ts -------------------------------------------------------------------------------- /backend/src/data/loops/upcomingScheduledPostsLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/loops/upcomingScheduledPostsLoop.ts -------------------------------------------------------------------------------- /backend/src/data/queryLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/queryLogger.ts -------------------------------------------------------------------------------- /backend/src/data/types/phisherman.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/data/types/phisherman.ts -------------------------------------------------------------------------------- /backend/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/env.ts -------------------------------------------------------------------------------- /backend/src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/globals.ts -------------------------------------------------------------------------------- /backend/src/humanizeDurationShort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/humanizeDurationShort.ts -------------------------------------------------------------------------------- /backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/index.ts -------------------------------------------------------------------------------- /backend/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/logger.ts -------------------------------------------------------------------------------- /backend/src/migrateConfigsToDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/migrateConfigsToDB.ts -------------------------------------------------------------------------------- /backend/src/migrations/1547393619900-AddIsHiddenToCases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/migrations/1547393619900-AddIsHiddenToCases.ts -------------------------------------------------------------------------------- /backend/src/migrations/1549649586803-AddPPFieldsToCases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/migrations/1549649586803-AddPPFieldsToCases.ts -------------------------------------------------------------------------------- /backend/src/migrations/1561111990357-CreateConfigsTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/migrations/1561111990357-CreateConfigsTable.ts -------------------------------------------------------------------------------- /backend/src/migrations/1561391921385-AddVCAlertTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/migrations/1561391921385-AddVCAlertTable.ts -------------------------------------------------------------------------------- /backend/src/migrations/1575199835233-CreateStatsTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/migrations/1575199835233-CreateStatsTable.ts -------------------------------------------------------------------------------- /backend/src/migrations/1600285077890-EncryptArchives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/migrations/1600285077890-EncryptArchives.ts -------------------------------------------------------------------------------- /backend/src/migrations/1622939525343-OrderReactionRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/migrations/1622939525343-OrderReactionRoles.ts -------------------------------------------------------------------------------- /backend/src/migrations/1631474131804-AddIndexToIsBot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/migrations/1631474131804-AddIndexToIsBot.ts -------------------------------------------------------------------------------- /backend/src/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/paths.ts -------------------------------------------------------------------------------- /backend/src/pluginUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/pluginUtils.ts -------------------------------------------------------------------------------- /backend/src/plugins/AutoDelete/AutoDeletePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/AutoDelete/AutoDeletePlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/AutoDelete/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/AutoDelete/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/AutoDelete/util/deleteNextItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/AutoDelete/util/deleteNextItem.ts -------------------------------------------------------------------------------- /backend/src/plugins/AutoDelete/util/onMessageCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/AutoDelete/util/onMessageCreate.ts -------------------------------------------------------------------------------- /backend/src/plugins/AutoDelete/util/onMessageDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/AutoDelete/util/onMessageDelete.ts -------------------------------------------------------------------------------- /backend/src/plugins/AutoDelete/util/onMessageDeleteBulk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/AutoDelete/util/onMessageDeleteBulk.ts -------------------------------------------------------------------------------- /backend/src/plugins/AutoReactions/AutoReactionsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/AutoReactions/AutoReactionsPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/AutoReactions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/AutoReactions/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/AutomodPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/AutomodPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/addRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/addRoles.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/addToCounter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/addToCounter.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/alert.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/archiveThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/archiveThread.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/availableActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/availableActions.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/ban.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/changeNickname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/changeNickname.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/changePerms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/changePerms.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/clean.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/exampleAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/exampleAction.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/kick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/kick.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/log.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/mute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/mute.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/pauseInvites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/pauseInvites.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/removeRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/removeRoles.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/reply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/reply.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/setAntiraidLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/setAntiraidLevel.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/setCounter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/setCounter.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/setSlowmode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/setSlowmode.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/startThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/startThread.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/actions/warn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/actions/warn.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/commands/AntiraidClearCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/commands/AntiraidClearCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/commands/SetAntiraidCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/commands/SetAntiraidCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/commands/ViewAntiraidCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/commands/ViewAntiraidCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/constants.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/events/runAutomodOnMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/events/runAutomodOnMessage.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/functions/findRecentSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/functions/findRecentSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/functions/getSpamIdentifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/functions/getSpamIdentifier.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/functions/runAutomod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/functions/runAutomod.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/functions/setAntiraidLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/functions/setAntiraidLevel.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/helpers.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/info.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/antiraidLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/antiraidLevel.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/anyMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/anyMessage.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/attachmentSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/attachmentSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/availableTriggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/availableTriggers.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/ban.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/characterSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/characterSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/counterTrigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/counterTrigger.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/emojiSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/emojiSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/exampleTrigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/exampleTrigger.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/kick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/kick.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/lineSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/lineSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/linkSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/linkSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/matchInvites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/matchInvites.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/matchLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/matchLinks.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/matchMimeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/matchMimeType.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/matchRegex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/matchRegex.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/matchWords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/matchWords.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/memberJoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/memberJoin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/memberJoinSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/memberJoinSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/memberLeave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/memberLeave.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/mentionSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/mentionSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/messageSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/messageSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/mute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/mute.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/note.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/roleAdded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/roleAdded.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/roleRemoved.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/roleRemoved.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/stickerSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/stickerSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/threadArchive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/threadArchive.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/threadCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/threadCreate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/threadCreateSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/threadCreateSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/threadDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/threadDelete.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/threadUnarchive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/threadUnarchive.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/unban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/unban.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/unmute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/unmute.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/triggers/warn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/triggers/warn.ts -------------------------------------------------------------------------------- /backend/src/plugins/Automod/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Automod/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/BotControl/BotControlPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/BotControl/BotControlPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/BotControl/activeReload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/BotControl/activeReload.ts -------------------------------------------------------------------------------- /backend/src/plugins/BotControl/commands/AllowServerCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/BotControl/commands/AllowServerCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/BotControl/commands/EligibleCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/BotControl/commands/EligibleCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/BotControl/commands/LeaveServerCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/BotControl/commands/LeaveServerCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/BotControl/commands/ProfilerDataCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/BotControl/commands/ProfilerDataCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/BotControl/commands/ReloadServerCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/BotControl/commands/ReloadServerCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/BotControl/commands/ServersCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/BotControl/commands/ServersCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/BotControl/functions/isEligible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/BotControl/functions/isEligible.ts -------------------------------------------------------------------------------- /backend/src/plugins/BotControl/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/BotControl/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/CasesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/CasesPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/caseAbbreviations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/caseAbbreviations.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/caseColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/caseColors.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/caseIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/caseIcons.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/functions/createCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/functions/createCase.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/functions/createCaseNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/functions/createCaseNote.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/functions/getCaseColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/functions/getCaseColor.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/functions/getCaseEmbed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/functions/getCaseEmbed.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/functions/getCaseIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/functions/getCaseIcon.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/functions/getCaseSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/functions/getCaseSummary.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/functions/getRecentCasesByMod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/functions/getRecentCasesByMod.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/functions/getTotalCasesByMod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/functions/getTotalCasesByMod.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/functions/resolveCaseId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/functions/resolveCaseId.ts -------------------------------------------------------------------------------- /backend/src/plugins/Cases/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Cases/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Censor/CensorPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Censor/CensorPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Censor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Censor/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Censor/util/applyFiltersToMsg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Censor/util/applyFiltersToMsg.ts -------------------------------------------------------------------------------- /backend/src/plugins/Censor/util/censorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Censor/util/censorMessage.ts -------------------------------------------------------------------------------- /backend/src/plugins/Censor/util/onMessageCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Censor/util/onMessageCreate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Censor/util/onMessageUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Censor/util/onMessageUpdate.ts -------------------------------------------------------------------------------- /backend/src/plugins/ChannelArchiver/rehostAttachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ChannelArchiver/rehostAttachment.ts -------------------------------------------------------------------------------- /backend/src/plugins/ChannelArchiver/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ChannelArchiver/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/CompanionChannels/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/CompanionChannels/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/ContextMenus/ContextMenuPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ContextMenus/ContextMenuPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/ContextMenus/actions/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ContextMenus/actions/clean.ts -------------------------------------------------------------------------------- /backend/src/plugins/ContextMenus/actions/mute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ContextMenus/actions/mute.ts -------------------------------------------------------------------------------- /backend/src/plugins/ContextMenus/actions/userInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ContextMenus/actions/userInfo.ts -------------------------------------------------------------------------------- /backend/src/plugins/ContextMenus/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ContextMenus/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/ContextMenus/utils/contextRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ContextMenus/utils/contextRouter.ts -------------------------------------------------------------------------------- /backend/src/plugins/ContextMenus/utils/loadAllCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ContextMenus/utils/loadAllCommands.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/CountersPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/CountersPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/commands/AddCounterCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/commands/AddCounterCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/commands/CountersListCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/commands/CountersListCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/commands/ResetCounterCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/commands/ResetCounterCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/commands/SetCounterCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/commands/SetCounterCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/commands/ViewCounterCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/commands/ViewCounterCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/functions/counterExists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/functions/counterExists.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/functions/decayCounter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/functions/decayCounter.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/functions/emitCounterEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/functions/emitCounterEvent.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/functions/offCounterEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/functions/offCounterEvent.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/functions/onCounterEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/functions/onCounterEvent.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/functions/setCounterValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/functions/setCounterValue.ts -------------------------------------------------------------------------------- /backend/src/plugins/Counters/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Counters/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/CustomEvents/ActionError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/CustomEvents/ActionError.ts -------------------------------------------------------------------------------- /backend/src/plugins/CustomEvents/CustomEventsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/CustomEvents/CustomEventsPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/CustomEvents/actions/addRoleAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/CustomEvents/actions/addRoleAction.ts -------------------------------------------------------------------------------- /backend/src/plugins/CustomEvents/actions/messageAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/CustomEvents/actions/messageAction.ts -------------------------------------------------------------------------------- /backend/src/plugins/CustomEvents/functions/runEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/CustomEvents/functions/runEvent.ts -------------------------------------------------------------------------------- /backend/src/plugins/CustomEvents/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/CustomEvents/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/GuildConfigReloader/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/GuildConfigReloader/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/GuildInfoSaver/GuildInfoSaverPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/GuildInfoSaver/GuildInfoSaverPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/GuildInfoSaver/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/GuildInfoSaver/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/GuildMemberCache/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/GuildMemberCache/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/InternalPoster/InternalPosterPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/InternalPoster/InternalPosterPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/InternalPoster/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/InternalPoster/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/LocateUser/LocateUserPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/LocateUser/LocateUserPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/LocateUser/commands/FollowCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/LocateUser/commands/FollowCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/LocateUser/commands/ListFollowCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/LocateUser/commands/ListFollowCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/LocateUser/commands/WhereCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/LocateUser/commands/WhereCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/LocateUser/events/SendAlertsEvts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/LocateUser/events/SendAlertsEvts.ts -------------------------------------------------------------------------------- /backend/src/plugins/LocateUser/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/LocateUser/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/LocateUser/utils/clearExpiredAlert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/LocateUser/utils/clearExpiredAlert.ts -------------------------------------------------------------------------------- /backend/src/plugins/LocateUser/utils/fillAlertsList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/LocateUser/utils/fillAlertsList.ts -------------------------------------------------------------------------------- /backend/src/plugins/LocateUser/utils/moveMember.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/LocateUser/utils/moveMember.ts -------------------------------------------------------------------------------- /backend/src/plugins/LocateUser/utils/sendAlerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/LocateUser/utils/sendAlerts.ts -------------------------------------------------------------------------------- /backend/src/plugins/LocateUser/utils/sendWhere.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/LocateUser/utils/sendWhere.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/LogsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/LogsPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/events/LogsChannelModifyEvts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/events/LogsChannelModifyEvts.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/events/LogsGuildBanEvts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/events/LogsGuildBanEvts.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/events/LogsGuildMemberAddEvt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/events/LogsGuildMemberAddEvt.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/events/LogsRoleModifyEvts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/events/LogsRoleModifyEvts.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/events/LogsThreadModifyEvts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/events/LogsThreadModifyEvts.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/events/LogsUserUpdateEvts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/events/LogsUserUpdateEvts.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/events/LogsVoiceChannelEvts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/events/LogsVoiceChannelEvts.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logAutomodAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logAutomodAction.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logBotAlert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logBotAlert.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logCaseCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logCaseCreate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logCaseDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logCaseDelete.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logCaseUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logCaseUpdate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logCensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logCensor.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logChannelCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logChannelCreate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logChannelDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logChannelDelete.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logChannelUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logChannelUpdate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logClean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logClean.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logDmFailed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logDmFailed.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logEmojiCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logEmojiCreate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logEmojiDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logEmojiDelete.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logEmojiUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logEmojiUpdate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMassBan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMassBan.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMassMute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMassMute.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMassUnban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMassUnban.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberBan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberBan.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberForceban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberForceban.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberJoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberJoin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberKick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberKick.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberLeave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberLeave.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberMute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberMute.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberNote.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberRestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberRestore.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberRoleAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberRoleAdd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberTimedBan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberTimedBan.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberUnban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberUnban.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberUnmute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberUnmute.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMemberWarn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMemberWarn.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMessageDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMessageDelete.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logMessageEdit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logMessageEdit.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logRoleCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logRoleCreate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logRoleDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logRoleDelete.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logRoleUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logRoleUpdate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logStickerCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logStickerCreate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logStickerDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logStickerDelete.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logStickerUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logStickerUpdate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logThreadCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logThreadCreate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logThreadDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logThreadDelete.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/logFunctions/logThreadUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/logFunctions/logThreadUpdate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/util/getLogMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/util/getLogMessage.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/util/isLogIgnored.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/util/isLogIgnored.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/util/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/util/log.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/util/onMessageDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/util/onMessageDelete.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/util/onMessageDeleteBulk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/util/onMessageDeleteBulk.ts -------------------------------------------------------------------------------- /backend/src/plugins/Logs/util/onMessageUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Logs/util/onMessageUpdate.ts -------------------------------------------------------------------------------- /backend/src/plugins/MessageSaver/MessageSaverPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/MessageSaver/MessageSaverPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/MessageSaver/commands/SavePinsToDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/MessageSaver/commands/SavePinsToDB.ts -------------------------------------------------------------------------------- /backend/src/plugins/MessageSaver/saveMessagesToDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/MessageSaver/saveMessagesToDB.ts -------------------------------------------------------------------------------- /backend/src/plugins/MessageSaver/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/MessageSaver/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/ModActionsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/ModActionsPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/AddCaseCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/AddCaseCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/BanCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/BanCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/CaseCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/CaseCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/CasesModCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/CasesModCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/CasesUserCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/CasesUserCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/DeleteCaseCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/DeleteCaseCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/ForcebanCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/ForcebanCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/ForcemuteCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/ForcemuteCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/ForceunmuteCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/ForceunmuteCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/HideCaseCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/HideCaseCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/KickCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/KickCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/MassBanCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/MassBanCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/MassUnbanCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/MassUnbanCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/MassmuteCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/MassmuteCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/MuteCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/MuteCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/NoteCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/NoteCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/SoftbanCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/SoftbanCommand.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/UnbanCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/UnbanCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/UnhideCaseCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/UnhideCaseCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/UnmuteCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/UnmuteCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/UpdateCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/UpdateCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/commands/WarnCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/commands/WarnCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/events/AuditLogEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/events/AuditLogEvents.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/functions/banUserId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/functions/banUserId.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/functions/clearTempban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/functions/clearTempban.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/functions/hasMutePerm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/functions/hasMutePerm.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/functions/ignoreEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/functions/ignoreEvent.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/functions/isBanned.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/functions/isBanned.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/functions/isEventIgnored.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/functions/isEventIgnored.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/functions/kickMember.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/functions/kickMember.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/functions/parseReason.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/functions/parseReason.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/functions/updateCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/functions/updateCase.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/functions/warnMember.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/functions/warnMember.ts -------------------------------------------------------------------------------- /backend/src/plugins/ModActions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ModActions/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/MutesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/MutesPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/commands/ClearBannedMutesCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/commands/ClearBannedMutesCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/commands/ClearMutesCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/commands/ClearMutesCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/commands/MutesCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/commands/MutesCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/functions/clearMute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/functions/clearMute.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/functions/getDefaultMuteType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/functions/getDefaultMuteType.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/functions/memberHasMutedRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/functions/memberHasMutedRole.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/functions/muteUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/functions/muteUser.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/functions/offMutesEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/functions/offMutesEvent.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/functions/onMutesEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/functions/onMutesEvent.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/functions/renewTimeoutMute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/functions/renewTimeoutMute.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/functions/unmuteUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/functions/unmuteUser.ts -------------------------------------------------------------------------------- /backend/src/plugins/Mutes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Mutes/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/NameHistory/NameHistoryPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/NameHistory/NameHistoryPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/NameHistory/commands/NamesCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/NameHistory/commands/NamesCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/NameHistory/events/UpdateNameEvts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/NameHistory/events/UpdateNameEvts.ts -------------------------------------------------------------------------------- /backend/src/plugins/NameHistory/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/NameHistory/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/NameHistory/updateNickname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/NameHistory/updateNickname.ts -------------------------------------------------------------------------------- /backend/src/plugins/Persist/PersistPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Persist/PersistPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Persist/events/LoadDataEvt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Persist/events/LoadDataEvt.ts -------------------------------------------------------------------------------- /backend/src/plugins/Persist/events/StoreDataEvt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Persist/events/StoreDataEvt.ts -------------------------------------------------------------------------------- /backend/src/plugins/Persist/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Persist/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Phisherman/PhishermanPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Phisherman/PhishermanPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Phisherman/functions/getDomainInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Phisherman/functions/getDomainInfo.ts -------------------------------------------------------------------------------- /backend/src/plugins/Phisherman/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Phisherman/info.ts -------------------------------------------------------------------------------- /backend/src/plugins/Phisherman/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Phisherman/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/PingableRoles/PingableRolesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/PingableRoles/PingableRolesPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/PingableRoles/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/PingableRoles/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/PostPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/PostPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/commands/EditCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/commands/EditCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/commands/EditEmbedCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/commands/EditEmbedCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/commands/PostCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/commands/PostCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/commands/PostEmbedCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/commands/PostEmbedCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/commands/ScheduledPostsListCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/commands/ScheduledPostsListCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/commands/ScheduledPostsShowCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/commands/ScheduledPostsShowCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/util/actualPostCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/util/actualPostCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/util/formatContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/util/formatContent.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/util/parseScheduleTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/util/parseScheduleTime.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/util/postMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/util/postMessage.ts -------------------------------------------------------------------------------- /backend/src/plugins/Post/util/postScheduledPost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Post/util/postScheduledPost.ts -------------------------------------------------------------------------------- /backend/src/plugins/ReactionRoles/ReactionRolesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ReactionRoles/ReactionRolesPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/ReactionRoles/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ReactionRoles/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/ReactionRoles/util/autoRefreshLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ReactionRoles/util/autoRefreshLoop.ts -------------------------------------------------------------------------------- /backend/src/plugins/ReactionRoles/util/runAutoRefresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ReactionRoles/util/runAutoRefresh.ts -------------------------------------------------------------------------------- /backend/src/plugins/Reminders/RemindersPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Reminders/RemindersPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Reminders/commands/RemindCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Reminders/commands/RemindCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Reminders/commands/RemindersCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Reminders/commands/RemindersCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Reminders/functions/postReminder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Reminders/functions/postReminder.ts -------------------------------------------------------------------------------- /backend/src/plugins/Reminders/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Reminders/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/RoleButtons/RoleButtonsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/RoleButtons/RoleButtonsPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/RoleButtons/commands/resetButtons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/RoleButtons/commands/resetButtons.ts -------------------------------------------------------------------------------- /backend/src/plugins/RoleButtons/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/RoleButtons/info.ts -------------------------------------------------------------------------------- /backend/src/plugins/RoleButtons/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/RoleButtons/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/RoleManager/RoleManagerPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/RoleManager/RoleManagerPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/RoleManager/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/RoleManager/constants.ts -------------------------------------------------------------------------------- /backend/src/plugins/RoleManager/functions/addRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/RoleManager/functions/addRole.ts -------------------------------------------------------------------------------- /backend/src/plugins/RoleManager/functions/removeRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/RoleManager/functions/removeRole.ts -------------------------------------------------------------------------------- /backend/src/plugins/RoleManager/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/RoleManager/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Roles/RolesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Roles/RolesPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Roles/commands/AddRoleCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Roles/commands/AddRoleCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Roles/commands/MassAddRoleCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Roles/commands/MassAddRoleCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Roles/commands/MassRemoveRoleCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Roles/commands/MassRemoveRoleCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Roles/commands/RemoveRoleCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Roles/commands/RemoveRoleCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Roles/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Roles/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/SelfGrantableRoles/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/SelfGrantableRoles/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Slowmode/SlowmodePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Slowmode/SlowmodePlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Slowmode/commands/SlowmodeClearCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Slowmode/commands/SlowmodeClearCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Slowmode/commands/SlowmodeGetCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Slowmode/commands/SlowmodeGetCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Slowmode/commands/SlowmodeListCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Slowmode/commands/SlowmodeListCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Slowmode/commands/SlowmodeSetCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Slowmode/commands/SlowmodeSetCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Slowmode/requiredPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Slowmode/requiredPermissions.ts -------------------------------------------------------------------------------- /backend/src/plugins/Slowmode/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Slowmode/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Slowmode/util/clearExpiredSlowmodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Slowmode/util/clearExpiredSlowmodes.ts -------------------------------------------------------------------------------- /backend/src/plugins/Slowmode/util/onMessageCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Slowmode/util/onMessageCreate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/SpamPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/SpamPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/events/SpamVoiceEvt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/events/SpamVoiceEvt.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/util/addRecentAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/util/addRecentAction.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/util/clearOldRecentActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/util/clearOldRecentActions.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/util/clearRecentUserActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/util/clearRecentUserActions.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/util/getRecentActionCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/util/getRecentActionCount.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/util/getRecentActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/util/getRecentActions.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/util/logAndDetectMessageSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/util/logAndDetectMessageSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/util/logAndDetectOtherSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/util/logAndDetectOtherSpam.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/util/logCensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/util/logCensor.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/util/onMessageCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/util/onMessageCreate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Spam/util/saveSpamArchives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Spam/util/saveSpamArchives.ts -------------------------------------------------------------------------------- /backend/src/plugins/Starboard/StarboardPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Starboard/StarboardPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Starboard/commands/MigratePinsCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Starboard/commands/MigratePinsCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Starboard/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Starboard/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Starboard/util/onMessageDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Starboard/util/onMessageDelete.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/TagsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/TagsPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/commands/TagCreateCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/commands/TagCreateCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/commands/TagDeleteCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/commands/TagDeleteCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/commands/TagEvalCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/commands/TagEvalCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/commands/TagListCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/commands/TagListCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/commands/TagSourceCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/commands/TagSourceCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/docs.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/templateFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/templateFunctions.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/util/findTagByName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/util/findTagByName.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/util/onMessageCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/util/onMessageCreate.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/util/onMessageDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/util/onMessageDelete.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/util/renderTagBody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/util/renderTagBody.ts -------------------------------------------------------------------------------- /backend/src/plugins/Tags/util/renderTagFromString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Tags/util/renderTagFromString.ts -------------------------------------------------------------------------------- /backend/src/plugins/TimeAndDate/TimeAndDatePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/TimeAndDate/TimeAndDatePlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/TimeAndDate/commands/SetTimezoneCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/TimeAndDate/commands/SetTimezoneCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/TimeAndDate/defaultDateFormats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/TimeAndDate/defaultDateFormats.ts -------------------------------------------------------------------------------- /backend/src/plugins/TimeAndDate/functions/getDateFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/TimeAndDate/functions/getDateFormat.ts -------------------------------------------------------------------------------- /backend/src/plugins/TimeAndDate/functions/getGuildTz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/TimeAndDate/functions/getGuildTz.ts -------------------------------------------------------------------------------- /backend/src/plugins/TimeAndDate/functions/getMemberTz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/TimeAndDate/functions/getMemberTz.ts -------------------------------------------------------------------------------- /backend/src/plugins/TimeAndDate/functions/inGuildTz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/TimeAndDate/functions/inGuildTz.ts -------------------------------------------------------------------------------- /backend/src/plugins/TimeAndDate/functions/inMemberTz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/TimeAndDate/functions/inMemberTz.ts -------------------------------------------------------------------------------- /backend/src/plugins/TimeAndDate/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/TimeAndDate/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/UsernameSaver/UsernameSaverPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/UsernameSaver/UsernameSaverPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/UsernameSaver/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/UsernameSaver/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/UsernameSaver/updateUsername.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/UsernameSaver/updateUsername.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/UtilityPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/UtilityPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/AboutCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/AboutCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/AvatarCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/AvatarCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/BanSearchCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/BanSearchCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/ChannelInfoCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/ChannelInfoCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/CleanCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/CleanCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/ContextCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/ContextCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/EmojiInfoCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/EmojiInfoCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/HelpCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/HelpCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/InfoCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/InfoCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/InviteInfoCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/InviteInfoCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/JumboCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/JumboCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/LevelCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/LevelCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/MessageInfoCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/MessageInfoCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/NicknameCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/NicknameCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/NicknameResetCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/NicknameResetCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/PingCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/PingCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/ReloadGuildCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/ReloadGuildCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/RoleInfoCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/RoleInfoCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/RolesCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/RolesCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/SearchCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/SearchCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/ServerInfoCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/ServerInfoCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/SnowflakeInfoCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/SnowflakeInfoCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/SourceCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/SourceCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/UserInfoCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/UserInfoCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/VcdisconnectCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/VcdisconnectCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/commands/VcmoveCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/commands/VcmoveCmd.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/events/AutoJoinThreadEvt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/events/AutoJoinThreadEvt.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/functions/getCustomEmojiId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/functions/getCustomEmojiId.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/functions/getEmojiInfoEmbed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/functions/getEmojiInfoEmbed.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/functions/getGuildPreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/functions/getGuildPreview.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/functions/getRoleInfoEmbed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/functions/getRoleInfoEmbed.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/functions/getUserInfoEmbed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/functions/getUserInfoEmbed.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/functions/hasPermission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/functions/hasPermission.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/guildReloads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/guildReloads.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/refreshMembers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/refreshMembers.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/search.ts -------------------------------------------------------------------------------- /backend/src/plugins/Utility/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/Utility/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/WelcomeMessage/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/WelcomeMessage/types.ts -------------------------------------------------------------------------------- /backend/src/plugins/ZeppelinPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ZeppelinPlugin.ts -------------------------------------------------------------------------------- /backend/src/plugins/ZeppelinPluginBlueprint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/ZeppelinPluginBlueprint.ts -------------------------------------------------------------------------------- /backend/src/plugins/availablePlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/plugins/availablePlugins.ts -------------------------------------------------------------------------------- /backend/src/profiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/profiler.ts -------------------------------------------------------------------------------- /backend/src/rateLimitStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/rateLimitStats.ts -------------------------------------------------------------------------------- /backend/src/regExpRunners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/regExpRunners.ts -------------------------------------------------------------------------------- /backend/src/restCallStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/restCallStats.ts -------------------------------------------------------------------------------- /backend/src/staff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/staff.ts -------------------------------------------------------------------------------- /backend/src/templateFormatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/templateFormatter.test.ts -------------------------------------------------------------------------------- /backend/src/templateFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/templateFormatter.ts -------------------------------------------------------------------------------- /backend/src/threadsSignalFix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/threadsSignalFix.ts -------------------------------------------------------------------------------- /backend/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/types.ts -------------------------------------------------------------------------------- /backend/src/uptime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/uptime.ts -------------------------------------------------------------------------------- /backend/src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils.test.ts -------------------------------------------------------------------------------- /backend/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils.ts -------------------------------------------------------------------------------- /backend/src/utils/DecayingCounter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/DecayingCounter.ts -------------------------------------------------------------------------------- /backend/src/utils/MessageBuffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/MessageBuffer.ts -------------------------------------------------------------------------------- /backend/src/utils/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/async.ts -------------------------------------------------------------------------------- /backend/src/utils/buildCustomId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/buildCustomId.ts -------------------------------------------------------------------------------- /backend/src/utils/calculateEmbedSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/calculateEmbedSize.ts -------------------------------------------------------------------------------- /backend/src/utils/canAssignRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/canAssignRole.ts -------------------------------------------------------------------------------- /backend/src/utils/canReadChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/canReadChannel.ts -------------------------------------------------------------------------------- /backend/src/utils/categorize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/categorize.ts -------------------------------------------------------------------------------- /backend/src/utils/createPaginatedMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/createPaginatedMessage.ts -------------------------------------------------------------------------------- /backend/src/utils/crypt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/crypt.test.ts -------------------------------------------------------------------------------- /backend/src/utils/crypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/crypt.ts -------------------------------------------------------------------------------- /backend/src/utils/cryptHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/cryptHelpers.ts -------------------------------------------------------------------------------- /backend/src/utils/cryptWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/cryptWorker.ts -------------------------------------------------------------------------------- /backend/src/utils/easyProfiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/easyProfiler.ts -------------------------------------------------------------------------------- /backend/src/utils/filterObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/filterObject.ts -------------------------------------------------------------------------------- /backend/src/utils/findMatchingAuditLogEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/findMatchingAuditLogEntry.ts -------------------------------------------------------------------------------- /backend/src/utils/getChunkedEmbedFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/getChunkedEmbedFields.ts -------------------------------------------------------------------------------- /backend/src/utils/getGuildPrefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/getGuildPrefix.ts -------------------------------------------------------------------------------- /backend/src/utils/getMissingChannelPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/getMissingChannelPermissions.ts -------------------------------------------------------------------------------- /backend/src/utils/getMissingPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/getMissingPermissions.ts -------------------------------------------------------------------------------- /backend/src/utils/getPermissionNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/getPermissionNames.ts -------------------------------------------------------------------------------- /backend/src/utils/hasDiscordPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/hasDiscordPermissions.ts -------------------------------------------------------------------------------- /backend/src/utils/idToTimestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/idToTimestamp.ts -------------------------------------------------------------------------------- /backend/src/utils/intToRgb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/intToRgb.ts -------------------------------------------------------------------------------- /backend/src/utils/isDefaultSticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/isDefaultSticker.ts -------------------------------------------------------------------------------- /backend/src/utils/isDmChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/isDmChannel.ts -------------------------------------------------------------------------------- /backend/src/utils/isGuildChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/isGuildChannel.ts -------------------------------------------------------------------------------- /backend/src/utils/isScalar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/isScalar.ts -------------------------------------------------------------------------------- /backend/src/utils/isThreadChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/isThreadChannel.ts -------------------------------------------------------------------------------- /backend/src/utils/isValidTimezone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/isValidTimezone.ts -------------------------------------------------------------------------------- /backend/src/utils/loadYamlSafely.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/loadYamlSafely.ts -------------------------------------------------------------------------------- /backend/src/utils/lockNameHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/lockNameHelpers.ts -------------------------------------------------------------------------------- /backend/src/utils/mergeRegexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/mergeRegexes.ts -------------------------------------------------------------------------------- /backend/src/utils/mergeWordsIntoRegex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/mergeWordsIntoRegex.ts -------------------------------------------------------------------------------- /backend/src/utils/messageHasContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/messageHasContent.ts -------------------------------------------------------------------------------- /backend/src/utils/messageIsEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/messageIsEmpty.ts -------------------------------------------------------------------------------- /backend/src/utils/missingPermissionError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/missingPermissionError.ts -------------------------------------------------------------------------------- /backend/src/utils/normalizeText.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/normalizeText.test.ts -------------------------------------------------------------------------------- /backend/src/utils/normalizeText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/normalizeText.ts -------------------------------------------------------------------------------- /backend/src/utils/parseColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/parseColor.ts -------------------------------------------------------------------------------- /backend/src/utils/parseCustomId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/parseCustomId.ts -------------------------------------------------------------------------------- /backend/src/utils/parseFuzzyTimezone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/parseFuzzyTimezone.ts -------------------------------------------------------------------------------- /backend/src/utils/permissionNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/permissionNames.ts -------------------------------------------------------------------------------- /backend/src/utils/readChannelPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/readChannelPermissions.ts -------------------------------------------------------------------------------- /backend/src/utils/registerEventListenersFromMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/registerEventListenersFromMap.ts -------------------------------------------------------------------------------- /backend/src/utils/resolveChannelIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/resolveChannelIds.ts -------------------------------------------------------------------------------- /backend/src/utils/resolveMessageTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/resolveMessageTarget.ts -------------------------------------------------------------------------------- /backend/src/utils/rgbToInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/rgbToInt.ts -------------------------------------------------------------------------------- /backend/src/utils/sendDM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/sendDM.ts -------------------------------------------------------------------------------- /backend/src/utils/snowflakeToTimestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/snowflakeToTimestamp.ts -------------------------------------------------------------------------------- /backend/src/utils/stripMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/stripMarkdown.ts -------------------------------------------------------------------------------- /backend/src/utils/tColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/tColor.ts -------------------------------------------------------------------------------- /backend/src/utils/tValidTimezone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/tValidTimezone.ts -------------------------------------------------------------------------------- /backend/src/utils/templateSafeObjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/templateSafeObjects.ts -------------------------------------------------------------------------------- /backend/src/utils/typeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/typeUtils.ts -------------------------------------------------------------------------------- /backend/src/utils/unregisterEventListenersFromMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/unregisterEventListenersFromMap.ts -------------------------------------------------------------------------------- /backend/src/utils/validateNoObjectAliases.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/validateNoObjectAliases.test.ts -------------------------------------------------------------------------------- /backend/src/utils/validateNoObjectAliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/validateNoObjectAliases.ts -------------------------------------------------------------------------------- /backend/src/utils/waitForInteraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/utils/waitForInteraction.ts -------------------------------------------------------------------------------- /backend/src/validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/validation.test.ts -------------------------------------------------------------------------------- /backend/src/validatorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/validatorUtils.ts -------------------------------------------------------------------------------- /backend/src/yamlParseTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/src/yamlParseTest.ts -------------------------------------------------------------------------------- /backend/start-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/start-dev.js -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /dashboard/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/.editorconfig -------------------------------------------------------------------------------- /dashboard/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/.eslintrc.js -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- 1 | /.cache 2 | /dist 3 | /node_modules 4 | -------------------------------------------------------------------------------- /dashboard/.htmlnanorc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | collapseWhitespace: false, 3 | }; 4 | -------------------------------------------------------------------------------- /dashboard/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/package-lock.json -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/api.ts -------------------------------------------------------------------------------- /dashboard/src/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/auth.ts -------------------------------------------------------------------------------- /dashboard/src/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/App.vue -------------------------------------------------------------------------------- /dashboard/src/components/Expandable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/Expandable.vue -------------------------------------------------------------------------------- /dashboard/src/components/PrivacyPolicy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/PrivacyPolicy.vue -------------------------------------------------------------------------------- /dashboard/src/components/Tab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/Tab.vue -------------------------------------------------------------------------------- /dashboard/src/components/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/Tabs.vue -------------------------------------------------------------------------------- /dashboard/src/components/Title.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/Title.vue -------------------------------------------------------------------------------- /dashboard/src/components/dashboard/GuildAccess.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/dashboard/GuildAccess.vue -------------------------------------------------------------------------------- /dashboard/src/components/dashboard/GuildInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/dashboard/GuildInfo.vue -------------------------------------------------------------------------------- /dashboard/src/components/dashboard/GuildList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/dashboard/GuildList.vue -------------------------------------------------------------------------------- /dashboard/src/components/dashboard/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/dashboard/Layout.vue -------------------------------------------------------------------------------- /dashboard/src/components/dashboard/PermissionTree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/dashboard/PermissionTree.vue -------------------------------------------------------------------------------- /dashboard/src/components/docs/ArgumentTypes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/docs/ArgumentTypes.vue -------------------------------------------------------------------------------- /dashboard/src/components/docs/CodeBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/docs/CodeBlock.vue -------------------------------------------------------------------------------- /dashboard/src/components/docs/ConfigurationFormat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/docs/ConfigurationFormat.vue -------------------------------------------------------------------------------- /dashboard/src/components/docs/Counters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/docs/Counters.vue -------------------------------------------------------------------------------- /dashboard/src/components/docs/DocsLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/docs/DocsLayout.vue -------------------------------------------------------------------------------- /dashboard/src/components/docs/Introduction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/docs/Introduction.vue -------------------------------------------------------------------------------- /dashboard/src/components/docs/MarkdownBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/docs/MarkdownBlock.vue -------------------------------------------------------------------------------- /dashboard/src/components/docs/Permissions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/docs/Permissions.vue -------------------------------------------------------------------------------- /dashboard/src/components/docs/Plugin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/docs/Plugin.vue -------------------------------------------------------------------------------- /dashboard/src/components/docs/PluginConfiguration.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/docs/PluginConfiguration.vue -------------------------------------------------------------------------------- /dashboard/src/components/docs/WorkInProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/components/docs/WorkInProgress.vue -------------------------------------------------------------------------------- /dashboard/src/directives/trim-indents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/directives/trim-indents.ts -------------------------------------------------------------------------------- /dashboard/src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/img/logo.png -------------------------------------------------------------------------------- /dashboard/src/img/squint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/img/squint.png -------------------------------------------------------------------------------- /dashboard/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/index.html -------------------------------------------------------------------------------- /dashboard/src/init-vue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/init-vue.ts -------------------------------------------------------------------------------- /dashboard/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/main.ts -------------------------------------------------------------------------------- /dashboard/src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/routes.ts -------------------------------------------------------------------------------- /dashboard/src/splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/splash.html -------------------------------------------------------------------------------- /dashboard/src/store/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/store/auth.ts -------------------------------------------------------------------------------- /dashboard/src/store/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/store/docs.ts -------------------------------------------------------------------------------- /dashboard/src/store/guilds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/store/guilds.ts -------------------------------------------------------------------------------- /dashboard/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/store/index.ts -------------------------------------------------------------------------------- /dashboard/src/store/staff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/store/staff.ts -------------------------------------------------------------------------------- /dashboard/src/store/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/store/types.ts -------------------------------------------------------------------------------- /dashboard/src/style/app.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/style/app.pcss -------------------------------------------------------------------------------- /dashboard/src/style/base.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/style/base.pcss -------------------------------------------------------------------------------- /dashboard/src/style/components.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/style/components.pcss -------------------------------------------------------------------------------- /dashboard/src/style/content.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/style/content.pcss -------------------------------------------------------------------------------- /dashboard/src/style/docs.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/style/docs.pcss -------------------------------------------------------------------------------- /dashboard/src/style/initial.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/style/initial.pcss -------------------------------------------------------------------------------- /dashboard/src/style/privacy-policy.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/style/privacy-policy.pcss -------------------------------------------------------------------------------- /dashboard/src/style/reset.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/style/reset.pcss -------------------------------------------------------------------------------- /dashboard/src/style/splash.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/src/style/splash.pcss -------------------------------------------------------------------------------- /dashboard/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/tailwind.config.js -------------------------------------------------------------------------------- /dashboard/ts-vue-shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/ts-vue-shim.d.ts -------------------------------------------------------------------------------- /dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/tsconfig.json -------------------------------------------------------------------------------- /dashboard/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dashboard/webpack.config.js -------------------------------------------------------------------------------- /debug/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/dependabot.yml -------------------------------------------------------------------------------- /docker-compose.ben.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/docker-compose.ben.yml -------------------------------------------------------------------------------- /docker-compose.development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/docker-compose.development.yml -------------------------------------------------------------------------------- /docker-compose.production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/docker-compose.production.yml -------------------------------------------------------------------------------- /docker/development/data/mysql/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /docker/development/devenv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/docker/development/devenv/Dockerfile -------------------------------------------------------------------------------- /docker/development/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/docker/development/nginx/Dockerfile -------------------------------------------------------------------------------- /docker/development/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/docker/development/nginx/default.conf -------------------------------------------------------------------------------- /docker/production/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/docker/production/backend/Dockerfile -------------------------------------------------------------------------------- /docker/production/config/mysql.conf.d/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /docker/production/data/mysql/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /docker/production/nginx-insecure/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/docker/production/nginx-insecure/Dockerfile -------------------------------------------------------------------------------- /docker/production/nginx-insecure/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/docker/production/nginx-insecure/default.conf -------------------------------------------------------------------------------- /docker/production/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/docker/production/nginx/Dockerfile -------------------------------------------------------------------------------- /docker/production/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/docker/production/nginx/default.conf -------------------------------------------------------------------------------- /docker/production/start-bot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/docker/production/start-bot.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/package.json -------------------------------------------------------------------------------- /presetup-configurator/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /presetup-configurator/.prettierignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /presetup-configurator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/package-lock.json -------------------------------------------------------------------------------- /presetup-configurator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/package.json -------------------------------------------------------------------------------- /presetup-configurator/snowpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/snowpack.config.js -------------------------------------------------------------------------------- /presetup-configurator/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/src/App.css -------------------------------------------------------------------------------- /presetup-configurator/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/src/App.tsx -------------------------------------------------------------------------------- /presetup-configurator/src/Configurator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/src/Configurator.css -------------------------------------------------------------------------------- /presetup-configurator/src/Configurator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/src/Configurator.tsx -------------------------------------------------------------------------------- /presetup-configurator/src/Levels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/src/Levels.tsx -------------------------------------------------------------------------------- /presetup-configurator/src/LogChannels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/src/LogChannels.css -------------------------------------------------------------------------------- /presetup-configurator/src/LogChannels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/src/LogChannels.tsx -------------------------------------------------------------------------------- /presetup-configurator/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/src/index.css -------------------------------------------------------------------------------- /presetup-configurator/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/src/index.html -------------------------------------------------------------------------------- /presetup-configurator/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/src/index.tsx -------------------------------------------------------------------------------- /presetup-configurator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/presetup-configurator/tsconfig.json -------------------------------------------------------------------------------- /shared/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/shared/package-lock.json -------------------------------------------------------------------------------- /shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/shared/package.json -------------------------------------------------------------------------------- /shared/src/apiPermissions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/shared/src/apiPermissions.test.ts -------------------------------------------------------------------------------- /shared/src/apiPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/shared/src/apiPermissions.ts -------------------------------------------------------------------------------- /shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/shared/tsconfig.json -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benricheson101/ZeppelinBot/HEAD/update.sh --------------------------------------------------------------------------------