Enumerations
Redmine offers a few enumeration resources, which are not editable via the API. These can be listed via the list()
or fetchMultiple()
methods.
Note: Redmine ignores pagination requests, for enumeration resources!
use Aedart\Redmine\DocumentCategory;
$Categories = DocumentCategory::list();
// ...or
$categories = DocumentCategory::fetchMultiple();
The following resources are of the type enumeration:
Document Categories
use Aedart\Redmine\DocumentCategory;
Issue Priorities
use Aedart\Redmine\IssuePriority;
Time Entry Activities
use Aedart\Redmine\TimeEntryActivity;