Apply column restrictions to the board
This commit is contained in:
@@ -4,6 +4,7 @@ namespace Kanboard\ServiceProvider;
|
||||
|
||||
use Kanboard\Core\Cache\FileCache;
|
||||
use Kanboard\Core\Cache\MemoryCache;
|
||||
use Kanboard\Decorator\ColumnMoveRestrictionCacheDecorator;
|
||||
use Kanboard\Decorator\MetadataCacheDecorator;
|
||||
use Pimple\Container;
|
||||
use Pimple\ServiceProviderInterface;
|
||||
@@ -46,6 +47,13 @@ class CacheProvider implements ServiceProviderInterface
|
||||
);
|
||||
};
|
||||
|
||||
$container['columnMoveRestrictionCacheDecorator'] = function($c) {
|
||||
return new ColumnMoveRestrictionCacheDecorator(
|
||||
$c['memoryCache'],
|
||||
$c['columnMoveRestrictionModel']
|
||||
);
|
||||
};
|
||||
|
||||
return $container;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user