I create a Extbase Extesion and i would like ingore validation on "showAction".
I define a Model Validation for my Model "Event" and add this annotation over my "showAction" in my "EventController".
/**
* action show
*
* @param \Mab\Oaevents\Domain\Model\Events $events
* @ignorevalidation $events
* @return void
*/
public function showAction(\Mab\Oaevents\Domain\Model\Events $events) {
}
But it take no effect, the validation was not ignored. Have someone a hint why this validation not ignored?