Fix: merge
All checks were successful
Format / formatting (push) Successful in 7s
CI / build (push) Successful in 11s

This commit is contained in:
Théo Le Lez
2025-02-19 18:52:43 +01:00
6 changed files with 77 additions and 57 deletions

View File

@ -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");
}