2020-04-05 11:50:50 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-04-05 11:50:50 +05:30
|
|
|
|
2021-06-09 05:03:54 +05:30
|
|
|
package web
|
2018-07-28 05:49:01 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
// tplSwaggerV1Json swagger v1 json template
|
|
|
|
const tplSwaggerV1Json base.TplName = "swagger/v1_json"
|
|
|
|
|
|
|
|
// SwaggerV1Json render swagger v1 json
|
|
|
|
func SwaggerV1Json(ctx *context.Context) {
|
2023-08-08 06:52:47 +05:30
|
|
|
t, err := ctx.Render.TemplateLookup(string(tplSwaggerV1Json), nil)
|
2023-04-08 18:45:22 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("unable to find template", err)
|
|
|
|
return
|
|
|
|
}
|
2021-01-26 21:06:53 +05:30
|
|
|
ctx.Resp.Header().Set("Content-Type", "application/json")
|
2023-04-08 18:45:22 +05:30
|
|
|
if err = t.Execute(ctx.Resp, ctx.Data); err != nil {
|
|
|
|
ctx.ServerError("unable to execute template", err)
|
2021-01-26 21:06:53 +05:30
|
|
|
}
|
2018-07-28 05:49:01 +05:30
|
|
|
}
|