0 votes

Does skipper support Symfony Validation annotations?

Like, when selecting UQ (Unique contraint) on a field in skipper, it should have added for instance:

I add a Entity called Project and whant Project->title to be Unique.

...
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;

....
/**
* @ORM\Entity(repositoryClass="AppBundle\Repository\ProjectRepository")
* @ORM\Table(name="project")
* @UniqueEntity("title")
*/
class Project {
...

in Solved by (120 points)
recategorized by

1 Answer

0 votes

Currently it's not possible to edit/export anything else than @ORM annotations. It's because any other annotations aren't ORM dependent so it shouldn't be possible to edit everything through Skipper. Because of that we're currently aiming only to ORM features.

by Skipper developer (141k points)