Hi,
I have successfully configured below softDelete and It works fine. But the find() method returns all the records. Do I need to override find() method to find([[ is_deleted => 0 ]]) ?
public function initialize() {
$this->addBehavior(new SoftDelete(
array(
'field' => 'is_deleted',
'value' => 1
)
));
}