mirror of
				https://github.com/bspeice/UNCCGameDay
				synced 2025-11-03 18:00:43 -05:00 
			
		
		
		
	GamedayService now knows how to look up users by name
This commit is contained in:
		@ -19,6 +19,9 @@ public interface GamedayService {
 | 
			
		||||
	@GET("/register/{id}/")
 | 
			
		||||
	Attendee getUser(@Query("id") int id);
 | 
			
		||||
	
 | 
			
		||||
	@GET("/register/{fname}/{lname}/")
 | 
			
		||||
	Attendee getUser(@Query("fname") String firstName, @Query("lname") String lastName);
 | 
			
		||||
	
 | 
			
		||||
	@GET("/register/")
 | 
			
		||||
	List<Attendee> getAllUsers();
 | 
			
		||||
	
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user