Make it possible to track any information on chore execution (by using Userfields, closes #825)

This commit is contained in:
Bernd Bestel
2021-07-11 19:44:06 +02:00
parent 27b46e1abf
commit 198216f38b
7 changed files with 44 additions and 16 deletions

View File

@@ -59,7 +59,9 @@ class UserfieldsService extends BaseService
$userEntities[] = 'userentity-' . $userentity->name;
}
return array_merge($exposedDefaultEntities, $userEntities, $specialEntities);
$entitiesSorted = array_merge($exposedDefaultEntities, $userEntities, $specialEntities);
sort($entitiesSorted);
return $entitiesSorted;
}
public function GetField($fieldId)