mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 12:53:43 +01:00 
			
		
		
		
	Add swagger comment for MirrorSync (#1747)
* Add swagger comment for MirrorSync * Generate swagger.v1.json
This commit is contained in:
		
							parent
							
								
									fd6034aaf2
								
							
						
					
					
						commit
						0161e46b5a
					
				
							
								
								
									
										16
									
								
								public/swagger.v1.json
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										16
									
								
								public/swagger.v1.json
									
									
									
									
										vendored
									
									
								
							@ -228,6 +228,22 @@
 | 
				
			|||||||
        }
 | 
					        }
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
 | 
					    "/repos/{username}/{reponame}/mirror-sync": {
 | 
				
			||||||
 | 
					      "post": {
 | 
				
			||||||
 | 
					        "produces": [
 | 
				
			||||||
 | 
					          "application/json"
 | 
				
			||||||
 | 
					        ],
 | 
				
			||||||
 | 
					        "operationId": "repoMirrorSync",
 | 
				
			||||||
 | 
					        "responses": {
 | 
				
			||||||
 | 
					          "200": {
 | 
				
			||||||
 | 
					            "$ref": "#/responses/empty"
 | 
				
			||||||
 | 
					          },
 | 
				
			||||||
 | 
					          "403": {
 | 
				
			||||||
 | 
					            "$ref": "#/responses/forbidden"
 | 
				
			||||||
 | 
					          }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
    "/repos/{username}/{reponame}/subscription": {
 | 
					    "/repos/{username}/{reponame}/subscription": {
 | 
				
			||||||
      "get": {
 | 
					      "get": {
 | 
				
			||||||
        "operationId": "userCurrentCheckSubscription",
 | 
					        "operationId": "userCurrentCheckSubscription",
 | 
				
			||||||
 | 
				
			|||||||
@ -337,6 +337,15 @@ func Delete(ctx *context.APIContext) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// MirrorSync adds a mirrored repository to the sync queue
 | 
					// MirrorSync adds a mirrored repository to the sync queue
 | 
				
			||||||
func MirrorSync(ctx *context.APIContext) {
 | 
					func MirrorSync(ctx *context.APIContext) {
 | 
				
			||||||
 | 
						// swagger:route POST /repos/{username}/{reponame}/mirror-sync repoMirrorSync
 | 
				
			||||||
 | 
						//
 | 
				
			||||||
 | 
						//     Produces:
 | 
				
			||||||
 | 
						//     - application/json
 | 
				
			||||||
 | 
						//
 | 
				
			||||||
 | 
						//     Responses:
 | 
				
			||||||
 | 
						//       200: empty
 | 
				
			||||||
 | 
						//       403: forbidden
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	repo := ctx.Repo.Repository
 | 
						repo := ctx.Repo.Repository
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if !ctx.Repo.IsWriter() {
 | 
						if !ctx.Repo.IsWriter() {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user