mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 16:24:25 +00:00
31bb9f3247
Follow #29165. * Introduce JSONTemplate to help to render JSON templates * Introduce JSEscapeSafe for templates. Now only use `{{ ... | JSEscape}}` instead of `{{ ... | JSEscape | Safe}}` * Simplify "UserLocationMapURL" useage
14 lines
277 B
Go
14 lines
277 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package web
|
|
|
|
import (
|
|
"code.gitea.io/gitea/modules/context"
|
|
)
|
|
|
|
// SwaggerV1Json render swagger v1 json
|
|
func SwaggerV1Json(ctx *context.Context) {
|
|
ctx.JSONTemplate("swagger/v1_json")
|
|
}
|