2017-10-21 10:05:50 -04: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 12:07:12 -05:00
|
|
|
"net/http"
|
|
|
|
|
2017-10-21 10:05:50 -04:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
// tplSwagger swagger page template
|
2018-07-27 20:19:01 -04:00
|
|
|
const tplSwagger base.TplName = "swagger/ui"
|
2017-10-21 10:05:50 -04:00
|
|
|
|
|
|
|
// Swagger render swagger-ui page with v1 json
|
|
|
|
func Swagger(ctx *context.Context) {
|
|
|
|
ctx.Data["APIJSONVersion"] = "v1"
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.HTML(http.StatusOK, tplSwagger)
|
2017-10-21 10:05:50 -04:00
|
|
|
}
|