forked from forgejo/forgejo
[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
)
This commit is contained in:
parent
05d3a143c3
commit
b5982f5008
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