Reputation: 41
Is there a way to just execute an action inside a controller without the request of its view.
I'm using cakephp 3.x.x
Thanks.
Upvotes: 3
Views: 2379
Reputation: 496
You can just turn off the view controller docs:
$this->autoRender = false;
Upvotes: 3