Skip to content

Commit

Permalink
Make CronTaskLog extend CommonDBChild (#17357)
Browse files Browse the repository at this point in the history
* Make CronTaskLog extend CommonDBChild

* rightname not needed anymore
  • Loading branch information
cconard96 authored Jun 27, 2024
1 parent b2747dd commit e9001a9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/CronTaskLog.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,11 @@
/**
* CronTaskLog class
**/
class CronTaskLog extends CommonDBTM
class CronTaskLog extends CommonDBChild
{
public static $itemtype = 'CronTask';
public static $items_id = 'crontasks_id';

// Class constant
const STATE_START = 0;
const STATE_RUN = 1;
Expand Down

0 comments on commit e9001a9

Please sign in to comment.