]> source.dussan.org Git - gitea.git/commitdiff
add some reponse status on api docs (#15399)
authora1012112796 <1012112796@qq.com>
Sun, 11 Apr 2021 08:53:23 +0000 (16:53 +0800)
committerGitHub <noreply@github.com>
Sun, 11 Apr 2021 08:53:23 +0000 (09:53 +0100)
Signed-off-by: a1012112796 <1012112796@qq.com>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Co-authored-by: 6543 <6543@obermui.de>
routers/api/v1/user/app.go
templates/swagger/v1_json.tmpl

index b88ed6fbd2726fcd0d05f308a55eb02643cacca4..7b69c50d7eb7f866159e202f5a6bc0481d34ecd5 100644 (file)
@@ -88,6 +88,8 @@ func CreateAccessToken(ctx *context.APIContext) {
        // responses:
        //   "201":
        //     "$ref": "#/responses/AccessToken"
+       //   "400":
+       //     "$ref": "#/responses/error"
 
        form := web.GetForm(ctx).(*api.CreateAccessTokenOption)
 
@@ -139,6 +141,8 @@ func DeleteAccessToken(ctx *context.APIContext) {
        // responses:
        //   "204":
        //     "$ref": "#/responses/empty"
+       //   "404":
+       //     "$ref": "#/responses/notFound"
        //   "422":
        //     "$ref": "#/responses/error"
 
@@ -199,6 +203,8 @@ func CreateOauth2Application(ctx *context.APIContext) {
        // responses:
        //   "201":
        //     "$ref": "#/responses/OAuth2Application"
+       //   "400":
+       //     "$ref": "#/responses/error"
 
        data := web.GetForm(ctx).(*api.CreateOAuth2ApplicationOptions)
 
@@ -272,6 +278,8 @@ func DeleteOauth2Application(ctx *context.APIContext) {
        // responses:
        //   "204":
        //     "$ref": "#/responses/empty"
+       //   "404":
+       //     "$ref": "#/responses/notFound"
        appID := ctx.ParamsInt64(":id")
        if err := models.DeleteOAuth2Application(appID, ctx.User.ID); err != nil {
                if models.IsErrOAuthApplicationNotFound(err) {
@@ -302,6 +310,8 @@ func GetOauth2Application(ctx *context.APIContext) {
        // responses:
        //   "200":
        //     "$ref": "#/responses/OAuth2Application"
+       //   "404":
+       //     "$ref": "#/responses/notFound"
        appID := ctx.ParamsInt64(":id")
        app, err := models.GetOAuth2ApplicationByID(appID)
        if err != nil {
@@ -340,6 +350,8 @@ func UpdateOauth2Application(ctx *context.APIContext) {
        // responses:
        //   "200":
        //     "$ref": "#/responses/OAuth2Application"
+       //   "404":
+       //     "$ref": "#/responses/notFound"
        appID := ctx.ParamsInt64(":id")
 
        data := web.GetForm(ctx).(*api.CreateOAuth2ApplicationOptions)
index 4be2718ef16cd9b5a5fbc3f96c1dcdde58930e6c..b548f25f4ff0f58981f189836fecf30a789af841 100644 (file)
         "responses": {
           "201": {
             "$ref": "#/responses/OAuth2Application"
+          },
+          "400": {
+            "$ref": "#/responses/error"
           }
         }
       }
         "responses": {
           "200": {
             "$ref": "#/responses/OAuth2Application"
+          },
+          "404": {
+            "$ref": "#/responses/notFound"
           }
         }
       },
         "responses": {
           "204": {
             "$ref": "#/responses/empty"
+          },
+          "404": {
+            "$ref": "#/responses/notFound"
           }
         }
       },
         "responses": {
           "200": {
             "$ref": "#/responses/OAuth2Application"
+          },
+          "404": {
+            "$ref": "#/responses/notFound"
           }
         }
       }
         "responses": {
           "201": {
             "$ref": "#/responses/AccessToken"
+          },
+          "400": {
+            "$ref": "#/responses/error"
           }
         }
       }
           "204": {
             "$ref": "#/responses/empty"
           },
+          "404": {
+            "$ref": "#/responses/notFound"
+          },
           "422": {
             "$ref": "#/responses/error"
           }