mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
22 lines
463 B
PHP
22 lines
463 B
PHP
|
<?php
|
||
|
|
||
|
$table_db = new PhabricatorDashboard();
|
||
|
|
||
|
foreach (new LiskMigrationIterator($table_db) as $dashboard) {
|
||
|
PhabricatorSearchWorker::queueDocumentForIndexing(
|
||
|
$dashboard->getPHID(),
|
||
|
array(
|
||
|
'force' => true,
|
||
|
));
|
||
|
}
|
||
|
|
||
|
$table_dbp = new PhabricatorDashboardPanel();
|
||
|
|
||
|
foreach (new LiskMigrationIterator($table_dbp) as $panel) {
|
||
|
PhabricatorSearchWorker::queueDocumentForIndexing(
|
||
|
$panel->getPHID(),
|
||
|
array(
|
||
|
'force' => true,
|
||
|
));
|
||
|
}
|