mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
20 lines
606 B
PHP
20 lines
606 B
PHP
|
<?php
|
||
|
|
||
|
// Advise installs to perform a reindex in order to rebuild the Ferret engine
|
||
|
// indexes.
|
||
|
|
||
|
// If the install is completely empty with no user accounts, don't require
|
||
|
// a rebuild. In particular, this happens when rebuilding the quickstart file.
|
||
|
$users = id(new PhabricatorUser())->loadAllWhere('1 = 1 LIMIT 1');
|
||
|
if (!$users) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
id(new PhabricatorConfigManualActivity())
|
||
|
->setActivityType(PhabricatorConfigManualActivity::TYPE_REINDEX)
|
||
|
->save();
|
||
|
} catch (AphrontDuplicateKeyQueryException $ex) {
|
||
|
// If we've already noted that this activity is required, just move on.
|
||
|
}
|