Add goto security docs link

This commit is contained in:
Shadow 2026-01-29 10:59:16 -06:00
parent 3986f4fc9c
commit d6884ca1e6
No known key found for this signature in database

View File

@ -40,6 +40,12 @@ class GotoDocsCommand extends GotoCommand {
protected message = "Docs are available at <https://docs.molt.bot>."
}
class GotoSecurityCommand extends GotoCommand {
name = "security"
description = "Share the security docs link"
protected message = "Security docs are available at <https://docs.molt.bot/security>."
}
class GotoInstallCommand extends GotoCommand {
name = "install"
description = "Share the install script link"
@ -56,6 +62,7 @@ export default class GotoRootCommand extends CommandWithSubcommands {
new GotoGuideCommand(),
new GotoStuckCommand(),
new GotoDocsCommand(),
new GotoSecurityCommand(),
new GotoInstallCommand()
]
}