I have a beforeFind callback in my model file. And in Controller file I have the below code :
$this->Users->get($this->Auth->user('user_id'));
. How can I add applyOptions
here to ignore beforeFind()
callback in UsersTable.php ?
Asked
Active
Viewed 152 times
1

web_developer
- 71
- 1
- 9
-
2`$this->Users->get($this->Auth->user('user_id'), ['foo' => 'bar']);`, then look at the `$options` array for this in your `beforeFind` callback and return early if it's there. – Greg Schmidt Jan 26 '20 at 01:40