Ignore disabled users for Git/SVN synchronization

This commit is contained in:
2019-08-01 16:51:02 +02:00
parent b8b18995c5
commit 9dc4d903c7
2 changed files with 8 additions and 0 deletions

View File

@@ -45,6 +45,10 @@ function handleSingleUserPHID(
return array();
}
if ($user->getIsDisabled()) {
return array();
}
$keys = id(new PhabricatorAuthSSHKey())->loadAllWhere(
'objectPHID = %s',
$user->getPHID());