Skip to content

1.3 Release

Compare
Choose a tag to compare
@ihorchepurnyi ihorchepurnyi released this 13 Nov 19:53
· 18 commits to master since this release

Changelog

  • Enh 26e9d9f : add 'searchClass' property to CronLogAction

Now you can override the base search class as following:

    public function actions()
    {
        return [
            'cron' => [
                'class' => 'yii2mod\cron\actions\CronLogAction',
                'searchClass' => [
                    'class' => 'yii2mod\cron\models\search\CronScheduleSearch',
                    'pageSize' => 10
                ]
            ]
        ];
    }