diff options
author | louiz’ <louiz@louiz.org> | 2016-09-29 23:10:41 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-09-29 23:10:41 +0200 |
commit | 265b5df61b5f3d4b5f30bbc6518f833f73bda1ff (patch) | |
tree | d31bbd3de2b4d2d955d26c026863568d2b21f48f /src/xmpp/biboumi_component.cpp | |
parent | ee4cf5dc2d3eaa43794a8ac736a6409e08082882 (diff) | |
download | biboumi-265b5df61b5f3d4b5f30bbc6518f833f73bda1ff.tar.gz biboumi-265b5df61b5f3d4b5f30bbc6518f833f73bda1ff.tar.bz2 biboumi-265b5df61b5f3d4b5f30bbc6518f833f73bda1ff.tar.xz biboumi-265b5df61b5f3d4b5f30bbc6518f833f73bda1ff.zip |
Re-add the ad-hoc command the was removed by mistake in the previous commit
Thank you, e2e tests
Diffstat (limited to 'src/xmpp/biboumi_component.cpp')
-rw-r--r-- | src/xmpp/biboumi_component.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/biboumi_component.cpp b/src/xmpp/biboumi_component.cpp index 2b4ff18..3a016b9 100644 --- a/src/xmpp/biboumi_component.cpp +++ b/src/xmpp/biboumi_component.cpp @@ -59,7 +59,7 @@ BiboumiComponent::BiboumiComponent(std::shared_ptr<Poller> poller, const std::st this->adhoc_commands_handler.add_command("ping", {{&PingStep1}, "Do a ping", false}); this->adhoc_commands_handler.add_command("hello", {{&HelloStep1, &HelloStep2}, "Receive a custom greeting", false}); this->adhoc_commands_handler.add_command("disconnect-user", {{&DisconnectUserStep1, &DisconnectUserStep2}, "Disconnect selected users from the gateway", true}); - this->adhoc_commands_handler.add_command("hello", {{&HelloStep1, &HelloStep2}, "Receive a custom greeting", false}); + this->adhoc_commands_handler.add_command("disconnect-from-irc-server", {{&DisconnectUserFromServerStep1, &DisconnectUserFromServerStep2, &DisconnectUserFromServerStep3}, "Disconnect from the selected IRC servers", false}); this->adhoc_commands_handler.add_command("reload", {{&Reload}, "Reload biboumi’s configuration", true}); #ifdef USE_DATABASE |