]> jfr.im git - irc/evilnet/znc.git/commitdiff
lastseen & certauth & route_replies: add missing descriptions
authorMikaela Suomalainen <redacted>
Sun, 20 Sep 2015 13:28:50 +0000 (16:28 +0300)
committerMikaela Suomalainen <redacted>
Sun, 20 Sep 2015 13:28:50 +0000 (16:28 +0300)
modules/certauth.cpp
modules/lastseen.cpp
modules/route_replies.cpp

index 30448f0b13642c1ad9a8999a3356d3cdf47ad0d2..3e5fe93b034a5d9047936783ab11df480531d46f 100644 (file)
@@ -32,7 +32,7 @@ public:
                        "[pubkey]", "If pubkey is not provided will use the current key");
                AddCommand("Del",  static_cast<CModCommand::ModCmdFunc>(&CSSLClientCertMod::HandleDelCommand),
                        "id");
-               AddCommand("List", static_cast<CModCommand::ModCmdFunc>(&CSSLClientCertMod::HandleListCommand));
+               AddCommand("List", static_cast<CModCommand::ModCmdFunc>(&CSSLClientCertMod::HandleListCommand),"", "List your public keys");
                AddCommand("Show", static_cast<CModCommand::ModCmdFunc>(&CSSLClientCertMod::HandleShowCommand),
                        "", "Print your current key");
        }
index 44055421eb1e8d1d7a225055a6d37e4fc650a470..3df2d392bf7ad9ac4f9e3055a6c8f54bde82cb27 100644 (file)
@@ -70,7 +70,7 @@ private:
 public:
        MODCONSTRUCTOR(CLastSeenMod) {
                AddHelpCommand();
-               AddCommand("Show", static_cast<CModCommand::ModCmdFunc>(&CLastSeenMod::ShowCommand));
+               AddCommand("Show", static_cast<CModCommand::ModCmdFunc>(&CLastSeenMod::ShowCommand),"", "Shows list of users and when they last logged in");
        }
 
        virtual ~CLastSeenMod() {}
index 6d44a67bc8b8a6b00294c22c4491907fe2ced0ba..f667a047e7d9c10d72ddb0b03dfd56376fbff0f1 100644 (file)
@@ -218,7 +218,7 @@ public:
 
                AddHelpCommand();
                AddCommand("Silent", static_cast<CModCommand::ModCmdFunc>(&CRouteRepliesMod::SilentCommand),
-                       "[yes|no]");
+                       "[yes|no]", "Decides whether to show the timeout messages or not");
        }
 
        virtual ~CRouteRepliesMod() {