Fix: merge
This commit is contained in:
@ -14,12 +14,12 @@ public class AdminApiService {
|
||||
}
|
||||
|
||||
// TODO
|
||||
public Iterable<DelAppointment> getUpcomingAppointments() {
|
||||
public Iterable<Appointment> getUpcomingAppointments(String email) {
|
||||
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
||||
}
|
||||
|
||||
// TODO
|
||||
public Iterable<DelProject> getPendingProjects() {
|
||||
public Iterable<Project> getPendingProjects() {
|
||||
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
||||
}
|
||||
|
||||
@ -29,12 +29,12 @@ public class AdminApiService {
|
||||
}
|
||||
|
||||
// TODO
|
||||
public void addNewProject(DelProject project) {
|
||||
public void addNewProject(Project project) {
|
||||
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
||||
}
|
||||
|
||||
// TODO
|
||||
public void createAppointmentReport(String appointmentId, DelReport report) {
|
||||
public void createAppointmentReport(String appointmentId, Report report, String email) {
|
||||
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user