mirror of
https://github.com/bspeice/UNCCGameDay
synced 2024-11-05 07:38:13 -05:00
GamedayService now knows how to look up users by name
This commit is contained in:
parent
85d6301d9b
commit
c78d2e526a
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user