Retrofit with jwt Interceptor, MainActivity with MapBox #3

Closed
s411201 wants to merge 0 commits from service-models-coordinates into develop
Collaborator
No description provided.
Collaborator

#1. In this class there are a few typos in API paths:
5b2dfff4dd/app/src/main/java/com/uam/wmi/findmytutor/service/UserService.java

For instance:
@GET("/api/users/tutors/page/{pageNum}")
should be
@GET("api/users/tutors/page/{pageNum}")

#2. A Result model class is useless. In PagedResult model result variable should have had a type of User instead of Result.

Please change:
private List results = null;
to
private List tutorList = null;

#1. In this class there are a few typos in API paths: https://git.wmi.amu.edu.pl/s416084/find-my-tutor-android/src/5b2dfff4ddffad213e44fa5fe5c2c2198381278e/app/src/main/java/com/uam/wmi/findmytutor/service/UserService.java For instance: @GET("/api/users/tutors/page/{pageNum}") should be @GET("api/users/tutors/page/{pageNum}") #2. A Result model class is useless. In PagedResult model result variable should have had a type of User instead of Result. Please change: private List<Result> results = null; to private List<User> tutorList = null;
s416204 closed this pull request 2018-09-08 15:18:51 +02:00

Pull request closed

Sign in to join this conversation.
No reviewers
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: s416084/find-my-tutor-android#3
No description provided.