Add @TODO comments per @nupplaphil review in various Admin modules

This commit is contained in:
Hypolite Petovan 2019-05-02 10:20:02 -04:00
parent 92b415bc36
commit b4b8c61daf
3 changed files with 8 additions and 2 deletions

View file

@ -39,6 +39,7 @@ class Queue extends BaseAdminModule
$info = L10n::t('This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.');
}
// @TODO Move to Model\WorkerQueue::getEntries()
$entries = DBA::select('workerqueue', ['id', 'parameter', 'created', 'priority'], $condition, ['order' => ['priority']]);
$r = [];