incubator-devlake
incubator-devlake copied to clipboard
fix: post project with blueprint
Summary
post projects with blueprint info
Does this close any open issues?
Related to #7427
Screenshots
- post projects with blueprint info
[POST] http://localhost:4000/api/projects
curl --request POST \
--url http://localhost:4000/api/projects \
--header 'content-type: application/json' \
--data '{
"name": "p1112",
"description": "",
"enable": true,
"metrics": [
{
"pluginName": "dora",
"pluginOption": "",
"enable": true
}
]
}'
Result:
{
"name": "p1112",
"description": "",
"createdAt": "2024-05-10T08:44:48.288+08:00",
"updatedAt": "2024-05-10T08:44:48.288+08:00",
"_raw_data_params": "",
"_raw_data_table": "",
"_raw_data_id": 0,
"_raw_data_remark": "",
"metrics": [
{
"pluginName": "dora",
"pluginOption": "",
"enable": true
}
],
"blueprint": {
"name": "p1112-Blueprint",
"projectName": "p1112",
"mode": "NORMAL",
"plan": [
[
{
"plugin": "org",
"subtasks": [
"setProjectMapping"
],
"options": {
"projectMappings": [
{
"projectName": "p1112",
"scopes": null
}
]
}
}
]
],
"enable": true,
"cronConfig": "0 0 * * *",
"isManual": false,
"beforePlan": null,
"afterPlan": null,
"labels": [],
"connections": [],
"skipOnFail": false,
"skipCollectors": false,
"fullSync": false,
"timeAfter": "2023-11-09T16:00:00Z",
"id": 10,
"createdAt": "2024-05-10T00:44:48.362Z",
"updatedAt": "2024-05-10T00:44:48.362Z"
}
}