implements dummy role

This commit is contained in:
Julien Fastré 2016-01-26 11:47:34 +01:00
parent af359c9a2b
commit 1671be107f

View File

@ -22,6 +22,7 @@ namespace Chill\ActivityBundle\Export\Aggregator;
use Symfony\Component\Form\FormBuilderInterface;
use Doctrine\ORM\QueryBuilder;
use Chill\MainBundle\Export\AggregatorInterface;
use Symfony\Component\Security\Core\Role\Role;
/**
*
@ -84,5 +85,10 @@ class ReasonAggregator implements AggregatorInterface
{
return "Aggregate by activity reason";
}
public function requiredRole()
{
return new Role('dummy');
}
}