diff options
author | Unknwon <u@gogs.io> | 2018-11-28 21:05:58 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2018-11-28 21:05:58 -0500 |
commit | 3db9b06a6ed0a217e72ea361867604477dcd25be (patch) | |
tree | cc164a0ff390d0919ccc76a75f055ee24b5a9e7f /gogs.go | |
parent | e9be8016e6b87efbc3bc62b373bed9143c2bac74 (diff) |
api: fix critical CSRF vulnerabilities on API routes (#5355)
By explicitly requires token authentication.
Diffstat (limited to 'gogs.go')
-rw-r--r-- | gogs.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ import ( "github.com/gogs/gogs/pkg/setting" ) -const APP_VER = "0.11.70.1126" +const APP_VER = "0.11.71.1128" func init() { setting.AppVer = APP_VER |