Update Queue.php

This commit is contained in:
Anyon 2019-11-23 17:28:03 +08:00
parent 8709a91849
commit de0425757d

View File

@ -57,16 +57,6 @@ class Queue extends Controller
$query->like('title,command')->equal('status')->order('id desc')->page();
}
/**
* 删除系统任务
* @auth true
* @throws \think\db\exception\DbException
*/
public function remove()
{
$this->_delete($this->table);
}
/**
* 重启系统任务
* @auth true
@ -118,4 +108,14 @@ class Queue extends Controller
}
}
/**
* 删除系统任务
* @auth true
* @throws \think\db\exception\DbException
*/
public function remove()
{
$this->_delete($this->table);
}
}