diff --git a/test-bot/src/main/kotlin/com/kotlindiscord/kord/extensions/testbot/TestBot.kt b/test-bot/src/main/kotlin/com/kotlindiscord/kord/extensions/testbot/TestBot.kt index 9d96493b67..3a4f666c65 100644 --- a/test-bot/src/main/kotlin/com/kotlindiscord/kord/extensions/testbot/TestBot.kt +++ b/test-bot/src/main/kotlin/com/kotlindiscord/kord/extensions/testbot/TestBot.kt @@ -60,31 +60,31 @@ public suspend fun main() { } extensions { -// web { -// hostname = "localhost:8080" -// siteTitle = "KordEx Testing" -// -// oauth { -// clientId = env("OAUTH_CLIENT_ID") -// clientSecret = env("OAUTH_CLIENT_SECRET") -// } -// } + web { + hostname = "localhost:8080" + siteTitle = "KordEx Testing" + + oauth { + clientId = env("OAUTH_CLIENT_ID") + clientSecret = env("OAUTH_CLIENT_SECRET") + } + } help { paginatorTimeout = 30 } -// extPhishing { -// logChannelName = "alerts" -// } -// -// if (envOrNull("PLURALKIT_TESTING") != null) { -// extPluralKit() -// } -// -// if (envOrNull("MAPPINGS_TESTING") != null) { -// extMappings { } -// } + extPhishing { + logChannelName = "alerts" + } + + if (envOrNull("PLURALKIT_TESTING") != null) { + extPluralKit() + } + + if (envOrNull("MAPPINGS_TESTING") != null) { + extMappings { } + } add(::ArgumentTestExtension) add(::I18nTestExtension)