15 lines
305 B
PHP
15 lines
305 B
PHP
|
<?php
|
||
|
|
||
|
namespace Kanboard\Plugin\RemoveClosedTasks;
|
||
|
|
||
|
use Kanboard\Core\Plugin\Base;
|
||
|
use Kanboard\Plugin\RemoveClosedTasks\Action\RemoveClosedTasks;
|
||
|
|
||
|
class Plugin extends Base
|
||
|
{
|
||
|
public function initialize()
|
||
|
{
|
||
|
$this->actionManager->register(new RemoveClosedTasks($this->container));
|
||
|
}
|
||
|
}
|