Add new automatic action: Move task to another column when the category is changed

This commit is contained in:
Frederic Guillot
2015-06-13 22:03:12 -04:00
parent 0dc247dca1
commit d577c73e46
8 changed files with 186 additions and 9 deletions

View File

@@ -222,12 +222,17 @@ abstract class Base extends \Core\Base
}
$data = $event->getAll();
$result = false;
if ($this->isExecutable($data)) {
$this->called = true;
return $this->doAction($data);
$result = $this->doAction($data);
}
return false;
if (DEBUG) {
$this->container['logger']->debug(get_called_class().' => '.($result ? 'true' : 'false'));
}
return $result;
}
}