mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 12:53:43 +01:00 
			
		
		
		
	Return 404 not 500 from API if team does not exist (#13118)
If team does not exist expect ErrTeamNotExist not ErrUserNotEXist Fix #11336 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lauris BH <lauris@nix.lv>
This commit is contained in:
		
							parent
							
								
									8be3e439c2
								
							
						
					
					
						commit
						f2858600af
					
				@ -404,7 +404,7 @@ func orgAssignment(args ...bool) macaron.Handler {
 | 
				
			|||||||
		if assignTeam {
 | 
							if assignTeam {
 | 
				
			||||||
			ctx.Org.Team, err = models.GetTeamByID(ctx.ParamsInt64(":teamid"))
 | 
								ctx.Org.Team, err = models.GetTeamByID(ctx.ParamsInt64(":teamid"))
 | 
				
			||||||
			if err != nil {
 | 
								if err != nil {
 | 
				
			||||||
				if models.IsErrUserNotExist(err) {
 | 
									if models.IsErrTeamNotExist(err) {
 | 
				
			||||||
					ctx.NotFound()
 | 
										ctx.NotFound()
 | 
				
			||||||
				} else {
 | 
									} else {
 | 
				
			||||||
					ctx.Error(http.StatusInternalServerError, "GetTeamById", err)
 | 
										ctx.Error(http.StatusInternalServerError, "GetTeamById", err)
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user