2020-04-05 06:20:50 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-04-05 06:20:50 +00:00
|
|
|
|
2021-06-08 23:33:54 +00:00
|
|
|
package web
|
2018-07-28 00:19:01 +00:00
|
|
|
|
|
|
|
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-04-08 13:15:22 +00:00
|
|
|
t, err := ctx.Render.TemplateLookup(string(tplSwaggerV1Json))
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("unable to find template", err)
|
|
|
|
return
|
|
|
|
}
|
2021-01-26 15:36:53 +00:00
|
|
|
ctx.Resp.Header().Set("Content-Type", "application/json")
|
2023-04-08 13:15:22 +00:00
|
|
|
if err = t.Execute(ctx.Resp, ctx.Data); err != nil {
|
|
|
|
ctx.ServerError("unable to execute template", err)
|
2021-01-26 15:36:53 +00:00
|
|
|
}
|
2018-07-28 00:19:01 +00:00
|
|
|
}
|