mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 00:02:59 -04: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
					
				| @ -103,7 +103,7 @@ func ReqBasicAuth() macaron.Handler { | |||||||
| 
 | 
 | ||||||
| func ReqAdmin() macaron.Handler { | func ReqAdmin() macaron.Handler { | ||||||
| 	return func(ctx *context.Context) { | 	return func(ctx *context.Context) { | ||||||
| 		if !ctx.User.IsAdmin { | 		if !ctx.IsSigned || !ctx.User.IsAdmin { | ||||||
| 			ctx.Error(403) | 			ctx.Error(403) | ||||||
| 			return | 			return | ||||||
| 		} | 		} | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user