Project

General

Profile

Actions

Bug #7372

closed

API v2 - accept PUT/POST requests with wrapped root node to add/remove has_many associations of child nodes

Added by Joseph Magen over 9 years ago. Updated almost 6 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
API
Target version:
Difficulty:
Triaged:
Fixed in Releases:
Found in Releases:

Description

previous commit bbf64d9900262e42afaec6dd84934ae601c1d4f3 only checked for has_many associations of child nodes if the request was not wrapped (no root node). Since POST/PUT is documented as wrapped, it should support this to.
Therefore, there will be two mains to add/remove assocations, either by

1) passing *_ids

{
"operatingsystem": {
"name": "CentOs",
"config_template_ids": [36, 12, 40]
}
}

2) Passing child nodes

{
"operatingsystem": {
"name": "CentOs",
"config_templates": [ {
"id": 36,
"name": "CentOS-enabled-post"
}, {
"id": 12,
"name": "Grubby Default"
}, {
"id": 40,
"name": "Katello Kickstart Default",
}
]
}
}

Actions

Also available in: Atom PDF