cli/pkg/cmd/api
Mislav Marohnić c5c2f9cc10
Supported passing nested JSON arrays/objects to api command via fields (#6614)
Examples:

	-f labels[]=bug -f labels[]=p1
        #=> { "labels": ["bug", "p1"] }

	-f branch[name]=patch-1 -F branch[protected]=true
        #=> { "branch": { "name": "patch-1", "protected": true }

	-f labels[][name]=bug-1 -f labels[][color]=red
        #=> { "labels": [{ "name": "bug-1", "color": "red" }] }
2022-12-22 20:12:00 +01:00
..
api.go Supported passing nested JSON arrays/objects to api command via fields (#6614) 2022-12-22 20:12:00 +01:00
api_test.go Supported passing nested JSON arrays/objects to api command via fields (#6614) 2022-12-22 20:12:00 +01:00
fields.go Supported passing nested JSON arrays/objects to api command via fields (#6614) 2022-12-22 20:12:00 +01:00
fields_test.go Supported passing nested JSON arrays/objects to api command via fields (#6614) 2022-12-22 20:12:00 +01:00
http.go Supported passing nested JSON arrays/objects to api command via fields (#6614) 2022-12-22 20:12:00 +01:00
http_test.go Supported passing nested JSON arrays/objects to api command via fields (#6614) 2022-12-22 20:12:00 +01:00
pagination.go Correct benign mistake in off-by-one guard 2021-08-19 14:41:04 +01:00
pagination_test.go Automatically add per_page=100 to paginated REST requests 2020-06-23 18:42:57 +02:00