mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-15 22:01:08 +00:00
6f960f23e5
- Resolves https://codeberg.org/forgejo/forgejo/issues/1226 (cherry picked from commite383b70109
) (cherry picked from commit029cfa34de
) (cherry picked from commit81392b8c55
) (cherry picked from commit0ebecca1e6
) (cherry picked from commitaff135418d
) (cherry picked from commitb5982f5008
) (cherry picked from commit00f86df8f4
) (cherry picked from commit178908c047
) (cherry picked from commit9cc57d1b3f
) (cherry picked from commitdc80ba9a97
) (cherry picked from commit5b2f1d7149
) (cherry picked from commitf0ab85cd06
)
23 lines
423 B
Go
23 lines
423 B
Go
// SPDX-License-Identifier: MIT
|
|
|
|
package v1
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"code.gitea.io/gitea/modules/json"
|
|
"code.gitea.io/gitea/modules/setting"
|
|
)
|
|
|
|
type Forgejo struct{}
|
|
|
|
var _ ServerInterface = &Forgejo{}
|
|
|
|
func NewForgejo() *Forgejo {
|
|
return &Forgejo{}
|
|
}
|
|
|
|
func (f *Forgejo) GetVersion(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusOK)
|
|
_ = json.NewEncoder(w).Encode(Version{&setting.ForgejoVersion})
|
|
}
|