Files
Atay-Makhzan/routers/api/v1/misc/swagger.go
T

22 lines
517 B
Go
Raw Normal View History

2017-10-21 16:05:50 +02:00
// Copyright 2017 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package misc
import (
2019-12-20 18:07:12 +01:00
"net/http"
2017-10-21 16:05:50 +02:00
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/context"
)
// tplSwagger swagger page template
2018-07-28 02:19:01 +02:00
const tplSwagger base.TplName = "swagger/ui"
2017-10-21 16:05:50 +02:00
// Swagger render swagger-ui page with v1 json
func Swagger(ctx *context.Context) {
ctx.Data["APIJSONVersion"] = "v1"
2019-12-20 18:07:12 +01:00
ctx.HTML(http.StatusOK, tplSwagger)
2017-10-21 16:05:50 +02:00
}