From 1275fd01a79f498947885d0bb5ff5ee5dee793dc Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sun, 28 Sep 2025 14:58:35 +0100 Subject: [PATCH] Fix a missing command description in hs_request. --- modules/hostserv/hs_request.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/hostserv/hs_request.cpp b/modules/hostserv/hs_request.cpp index 78b8d9fc1..cf832c4e5 100644 --- a/modules/hostserv/hs_request.cpp +++ b/modules/hostserv/hs_request.cpp @@ -544,7 +544,13 @@ public: bool OnHelp(CommandSource &source, const Anope::string &subcommand) override { - // TODO + this->SendSyntax(source); + source.Reply(" "); + source.Reply(_( + "Validates a previously requested vhost using DNS. If you own the domain you " + "have requested as a vhost you can validate your ownership of it using a DNS " + "TXT record to approve your own vhost." + )); return true; } };