mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-31 22:24:37 -04:00
[CLEANUP] Reuse ForgejoVersion variable
- 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
)
This commit is contained in:
parent
1f4d33de2b
commit
f0ab85cd06
3 changed files with 5 additions and 6 deletions
|
@ -6,6 +6,7 @@ import (
|
|||
"net/http"
|
||||
|
||||
"code.gitea.io/gitea/modules/json"
|
||||
"code.gitea.io/gitea/modules/setting"
|
||||
)
|
||||
|
||||
type Forgejo struct{}
|
||||
|
@ -16,9 +17,7 @@ func NewForgejo() *Forgejo {
|
|||
return &Forgejo{}
|
||||
}
|
||||
|
||||
var ForgejoVersion = "development"
|
||||
|
||||
func (f *Forgejo) GetVersion(w http.ResponseWriter, r *http.Request) {
|
||||
w.WriteHeader(http.StatusOK)
|
||||
_ = json.NewEncoder(w).Encode(Version{&ForgejoVersion})
|
||||
_ = json.NewEncoder(w).Encode(Version{&setting.ForgejoVersion})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue