Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ The present file will list all changes made to the project; according to the
## [11.0.3] unreleased

### Added
- New schemas/endpoints for over 20 dropdown itemtypes in High-Level API v2.2.
- Added `user`, `group`, `code`, `is_helpdesk_visible`, `ticket_incident_template`, `ticket_request_template`, `change_template`, `problem_template`, `is_incident_visible`,`is_request_visible`,`is_change_visible`,`is_problem_visible`, and `knowbase_category` properties for the ITILCategory schema in High-Level API v2.2.
- Added `is_helpdesk_visible`, `date_creation` and `date_mod` properties for the TaskCategory schema in High-Level API v2.2.

### Changed

Expand Down
2 changes: 1 addition & 1 deletion src/Glpi/Api/HL/Controller/AssetController.php
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ class: User::class,
];
}
if ($asset->isField('autoupdatesystems_id')) {
$schemas[$schema_name]['properties']['autoupdatesystem'] = self::getDropdownTypeSchema(AutoUpdateSystem::class);
$schemas[$schema_name]['properties']['autoupdatesystem'] = self::getDropdownTypeSchema(class: AutoUpdateSystem::class, full_schema: 'AutoUpdateSystem');
}

if ($asset->maybeDeleted()) {
Expand Down
Loading
Loading