mirror of https://sc.cryxtal.org/crystal/forgejo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
423 B
20 lines
423 B
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package misc
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
"code.gitea.io/gitea/modules/context"
|
|
)
|
|
|
|
// tplSwagger swagger page template
|
|
const tplForgejoSwagger base.TplName = "swagger/forgejo-ui"
|
|
|
|
func SwaggerForgejo(ctx *context.Context) {
|
|
ctx.Data["APIVersion"] = "v1"
|
|
ctx.HTML(http.StatusOK, tplForgejoSwagger)
|
|
}
|