2017-03-06 14:13:17 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-03-06 14:13:17 +00:00
|
|
|
|
|
|
|
package misc
|
|
|
|
|
|
|
|
import (
|
2019-12-20 17:07:12 +00:00
|
|
|
"net/http"
|
|
|
|
|
2017-03-06 14:13:17 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-05-11 10:21:34 +00:00
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2024-02-27 07:12:22 +00:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2017-03-06 14:13:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Version shows the version of the Gitea server
|
|
|
|
func Version(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation GET /version miscellaneous getVersion
|
|
|
|
// ---
|
|
|
|
// summary: Returns the version of the Gitea application
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/ServerVersion"
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, &structs.ServerVersion{Version: setting.AppVer})
|
2017-03-06 14:13:17 +00:00
|
|
|
}
|