mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01:00
api: fix panic if anonymous user request admin API
Add sign in check before check user account level
This commit is contained in:
parent
745167d57a
commit
e63b2881b1
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ func ReqBasicAuth() macaron.Handler {
|
|||
|
||||
func ReqAdmin() macaron.Handler {
|
||||
return func(ctx *context.Context) {
|
||||
if !ctx.User.IsAdmin {
|
||||
if !ctx.IsSigned || !ctx.User.IsAdmin {
|
||||
ctx.Error(403)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue