浏览代码

Fix query parameter name comment in issue API (#4421)

tags/v1.6.0-dev
Lauris BH 6 年前
父节点
当前提交
659bc727bd
没有帐户链接到提交者的电子邮件
共有 2 个文件被更改,包括 4 次插入4 次删除
  1. 2
    2
      public/swagger.v1.json
  2. 2
    2
      routers/api/v1/repo/issue_comment.go

+ 2
- 2
public/swagger.v1.json 查看文件

@@ -1847,7 +1847,7 @@
{
"type": "string",
"description": "if provided, only comments updated since the provided time are returned.",
"name": "string",
"name": "since",
"in": "query"
}
],
@@ -2160,7 +2160,7 @@
{
"type": "string",
"description": "if provided, only comments updated since the specified time are returned.",
"name": "string",
"name": "since",
"in": "query"
}
],

+ 2
- 2
routers/api/v1/repo/issue_comment.go 查看文件

@@ -36,7 +36,7 @@ func ListIssueComments(ctx *context.APIContext) {
// description: index of the issue
// type: integer
// required: true
// - name: string
// - name: since
// in: query
// description: if provided, only comments updated since the specified time are returned.
// type: string
@@ -90,7 +90,7 @@ func ListRepoIssueComments(ctx *context.APIContext) {
// description: name of the repo
// type: string
// required: true
// - name: string
// - name: since
// in: query
// description: if provided, only comments updated since the provided time are returned.
// type: string

正在加载...
取消
保存