mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
50debecf52
Summary: Ref T6741. Ref T10246. This is largely modernization, but will partially support namespace locking in Almanac. Test Plan: Searched for Almanac networks by name substring. {F1121740} Reviewers: chad Reviewed By: chad Maniphest Tasks: T6741, T10246 Differential Revision: https://secure.phabricator.com/D15322
11 lines
219 B
PHP
11 lines
219 B
PHP
<?php
|
|
|
|
$table = new AlmanacNetwork();
|
|
|
|
foreach (new LiskMigrationIterator($table) as $network) {
|
|
PhabricatorSearchWorker::queueDocumentForIndexing(
|
|
$network->getPHID(),
|
|
array(
|
|
'force' => true,
|
|
));
|
|
}
|