Suggest Changes API

原文:https://docs.gitlab.com/ee/api/suggestions.html

Suggest Changes API

每个对建议的 API 调用都必须经过验证.

Applying suggestions

在合并请求中应用建议的补丁. 用户必须至少是Developer才能执行此操作.

  1. PUT /suggestions/:id/apply
Attribute Type Required Description
id integer/string yes 建议的 ID
  1. curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/suggestions/5/apply"

响应示例:

  1. { "id": 36, "from_line": 10, "to_line": 10, "appliable": false, "applied": true, "from_content": " \"--talk-name=org.freedesktop.\",\n", "to_content": " \"--talk-name=org.free.\",\n \"--talk-name=org.desktop.\",\n" }