removed the GET /Apps/{id} frontend just iterates on the /apps list
This commit is contained in:
		| @ -31,16 +31,7 @@ public class ApplicationsController { | ||||
|         return new ResponseEntity<>(getAuthorizedApplications(token), HttpStatus.OK); | ||||
|     } | ||||
|  | ||||
|     @GetMapping("/apps/{identifier}") | ||||
|     public ResponseEntity<Boolean> getAppAuthorization(@PathVariable Applications identifier, @RequestHeader("Authorization") String token){ | ||||
|  | ||||
|         if (getAuthorizedApplications(token).contains(identifier)){ | ||||
|             return new ResponseEntity<>(true, HttpStatus.OK); | ||||
|         } | ||||
|         return new ResponseEntity<>(false, HttpStatus.OK); | ||||
|     } | ||||
|  | ||||
|     public ArrayList<Applications> getAuthorizedApplications(String token){ | ||||
|     private ArrayList<Applications> getAuthorizedApplications(String token){ | ||||
|         Role posterRole = authServ.getUserFromToken(token).getRole(); | ||||
|         ArrayList<Applications> authorizedApps = new ArrayList<>(); | ||||
|  | ||||
|  | ||||
		Reference in New Issue
	
	Block a user