summaryrefslogtreecommitdiff
path: root/doc/plugin-registration.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'doc/plugin-registration.markdown')
-rw-r--r--doc/plugin-registration.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/plugin-registration.markdown b/doc/plugin-registration.markdown
index 50bfaff2..312f61b9 100644
--- a/doc/plugin-registration.markdown
+++ b/doc/plugin-registration.markdown
@@ -156,8 +156,8 @@ class Plugin extends Base
public function initialize()
{
$this->action->extendActions(
- '\Kanboard\Plugin\AutomaticAction\Action\SendSlackMessage', // Use absolute namespace
- t('Send a message to Slack when the task color change')
+ '\Kanboard\Plugin\AutomaticAction\Action\DoSomething', // Use absolute namespace
+ t('Do something when the task color change')
);
}
}