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