Fedora Account System
Red Hat Associate
Red Hat Customer
Description of problem: When bulk assigning tags via: { "action" : "assign_tags", "resources" : [ { "href" : "/api/vms/166", "tags" : [ { "category" : "department", "name" : "finance" } ] } ] } The href returned is missing the ID of the object: { "results": [ { "success": true, "message": "Already tagged with Tag: category:'department' name:'finance'", "href": "http://localhost:3000/api/vms/", "tag_category": "department", "tag_name": "finance" } ] } Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info:
PR: https://github.com/ManageIQ/manageiq/pull/15083
Verified that the returned href contains the ID of the object: POST https://<aadress>/api/vms { "action" : "assign_tags", "resources" : [ { "href" : "/api/vms/:id", "tags" : [ { "category" : "department", "name" : "finance" } ] } ] } { "results": [ { "success": true, "message": "Assigning Tag: category:'department' name:'finance'", "href": "https://<address>/api/vms/:id", "tag_category": "department", "tag_name": "finance" } ] }