mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-11 22:15:38 +02:00
fix swagger comments in repo adoption routes
This commit is contained in:
parent
3c9dc0daf4
commit
d2b13f7749
@ -125,7 +125,7 @@ func AdoptRepository(ctx *context.APIContext) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func AdoptGroupRepository(ctx *context.APIContext) {
|
func AdoptGroupRepository(ctx *context.APIContext) {
|
||||||
// swagger:operation POST /admin/unadopted/{owner}/{group_id}/{repo} admin adminAdoptRepository
|
// swagger:operation POST /admin/unadopted/{owner}/group/{group_id}/{repo} admin adminAdoptRepositoryInGroup
|
||||||
// ---
|
// ---
|
||||||
// summary: Adopt unadopted files as a repository
|
// summary: Adopt unadopted files as a repository
|
||||||
// produces:
|
// produces:
|
||||||
@ -141,6 +141,12 @@ func AdoptGroupRepository(ctx *context.APIContext) {
|
|||||||
// description: name of the repo
|
// description: name of the repo
|
||||||
// type: string
|
// type: string
|
||||||
// required: true
|
// required: true
|
||||||
|
// - name: group_id
|
||||||
|
// in: path
|
||||||
|
// description: group ID of the repo
|
||||||
|
// type: integer
|
||||||
|
// format: int64
|
||||||
|
// required: true
|
||||||
// responses:
|
// responses:
|
||||||
// "204":
|
// "204":
|
||||||
// "$ref": "#/responses/empty"
|
// "$ref": "#/responses/empty"
|
||||||
@ -217,7 +223,7 @@ func DeleteUnadoptedRepository(ctx *context.APIContext) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func DeleteUnadoptedRepositoryInGroup(ctx *context.APIContext) {
|
func DeleteUnadoptedRepositoryInGroup(ctx *context.APIContext) {
|
||||||
// swagger:operation DELETE /admin/unadopted/{owner}/{group_id}/{repo} admin adminDeleteUnadoptedRepository
|
// swagger:operation DELETE /admin/unadopted/{owner}/group/{group_id}/{repo} admin adminDeleteUnadoptedRepositoryInGroup
|
||||||
// ---
|
// ---
|
||||||
// summary: Delete unadopted files
|
// summary: Delete unadopted files
|
||||||
// produces:
|
// produces:
|
||||||
@ -233,6 +239,12 @@ func DeleteUnadoptedRepositoryInGroup(ctx *context.APIContext) {
|
|||||||
// description: name of the repo
|
// description: name of the repo
|
||||||
// type: string
|
// type: string
|
||||||
// required: true
|
// required: true
|
||||||
|
// - name: group_id
|
||||||
|
// in: path
|
||||||
|
// description: group ID of the repo
|
||||||
|
// type: integer
|
||||||
|
// format: int64
|
||||||
|
// required: true
|
||||||
// responses:
|
// responses:
|
||||||
// "204":
|
// "204":
|
||||||
// "$ref": "#/responses/empty"
|
// "$ref": "#/responses/empty"
|
||||||
|
|||||||
@ -1,94 +1,5 @@
|
|||||||
{
|
{
|
||||||
"paths": {
|
"paths": {
|
||||||
"/admin/unadopted/{owner}/group/{group_id}/{repo}": {
|
|
||||||
"delete": {
|
|
||||||
"operationId": "adminDeleteUnadoptedRepository",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"description": "owner of the repo",
|
|
||||||
"in": "path",
|
|
||||||
"name": "owner",
|
|
||||||
"required": true,
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "name of the repo",
|
|
||||||
"in": "path",
|
|
||||||
"name": "repo",
|
|
||||||
"required": true,
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "group ID of the repo",
|
|
||||||
"format": "int64",
|
|
||||||
"in": "path",
|
|
||||||
"name": "group_id",
|
|
||||||
"required": true,
|
|
||||||
"type": "integer"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"produces": [
|
|
||||||
"application/json"
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"204": {
|
|
||||||
"$ref": "#/responses/empty"
|
|
||||||
},
|
|
||||||
"403": {
|
|
||||||
"$ref": "#/responses/forbidden"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"summary": "Delete unadopted files",
|
|
||||||
"tags": [
|
|
||||||
"admin"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"post": {
|
|
||||||
"operationId": "adminAdoptRepository",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"description": "owner of the repo",
|
|
||||||
"in": "path",
|
|
||||||
"name": "owner",
|
|
||||||
"required": true,
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "name of the repo",
|
|
||||||
"in": "path",
|
|
||||||
"name": "repo",
|
|
||||||
"required": true,
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "group ID of the repo",
|
|
||||||
"format": "int64",
|
|
||||||
"in": "path",
|
|
||||||
"name": "group_id",
|
|
||||||
"required": true,
|
|
||||||
"type": "integer"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"produces": [
|
|
||||||
"application/json"
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"204": {
|
|
||||||
"$ref": "#/responses/empty"
|
|
||||||
},
|
|
||||||
"403": {
|
|
||||||
"$ref": "#/responses/forbidden"
|
|
||||||
},
|
|
||||||
"404": {
|
|
||||||
"$ref": "#/responses/notFound"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"summary": "Adopt unadopted files as a repository",
|
|
||||||
"tags": [
|
|
||||||
"admin"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/repos/{owner}/group/{group_id}/{repo}": {
|
"/repos/{owner}/group/{group_id}/{repo}": {
|
||||||
"delete": {
|
"delete": {
|
||||||
"operationId": "repoDelete",
|
"operationId": "repoDelete",
|
||||||
|
|||||||
77
templates/swagger/v1_json.tmpl
generated
77
templates/swagger/v1_json.tmpl
generated
@ -662,7 +662,7 @@
|
|||||||
"admin"
|
"admin"
|
||||||
],
|
],
|
||||||
"summary": "Adopt unadopted files as a repository",
|
"summary": "Adopt unadopted files as a repository",
|
||||||
"operationId": "adminAdoptRepositoryMixin0",
|
"operationId": "adminAdoptRepositoryInGroup",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
@ -707,7 +707,7 @@
|
|||||||
"admin"
|
"admin"
|
||||||
],
|
],
|
||||||
"summary": "Delete unadopted files",
|
"summary": "Delete unadopted files",
|
||||||
"operationId": "adminDeleteUnadoptedRepositoryMixin0",
|
"operationId": "adminDeleteUnadoptedRepositoryInGroup",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
@ -742,79 +742,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"/admin/unadopted/{owner}/{group_id}/{repo}": {
|
|
||||||
"post": {
|
|
||||||
"produces": [
|
|
||||||
"application/json"
|
|
||||||
],
|
|
||||||
"tags": [
|
|
||||||
"admin"
|
|
||||||
],
|
|
||||||
"summary": "Adopt unadopted files as a repository",
|
|
||||||
"operationId": "adminAdoptRepository",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "owner of the repo",
|
|
||||||
"name": "owner",
|
|
||||||
"in": "path",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "name of the repo",
|
|
||||||
"name": "repo",
|
|
||||||
"in": "path",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"204": {
|
|
||||||
"$ref": "#/responses/empty"
|
|
||||||
},
|
|
||||||
"403": {
|
|
||||||
"$ref": "#/responses/forbidden"
|
|
||||||
},
|
|
||||||
"404": {
|
|
||||||
"$ref": "#/responses/notFound"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"delete": {
|
|
||||||
"produces": [
|
|
||||||
"application/json"
|
|
||||||
],
|
|
||||||
"tags": [
|
|
||||||
"admin"
|
|
||||||
],
|
|
||||||
"summary": "Delete unadopted files",
|
|
||||||
"operationId": "adminDeleteUnadoptedRepository",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "owner of the repo",
|
|
||||||
"name": "owner",
|
|
||||||
"in": "path",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "name of the repo",
|
|
||||||
"name": "repo",
|
|
||||||
"in": "path",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"204": {
|
|
||||||
"$ref": "#/responses/empty"
|
|
||||||
},
|
|
||||||
"403": {
|
|
||||||
"$ref": "#/responses/forbidden"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/admin/unadopted/{owner}/{repo}": {
|
"/admin/unadopted/{owner}/{repo}": {
|
||||||
"post": {
|
"post": {
|
||||||
"produces": [
|
"produces": [
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user