File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 1313import api .myitmo .model .sport .*;
1414import org .jetbrains .annotations .Nullable ;
1515import retrofit2 .Call ;
16- import retrofit2 .http .GET ;
17- import retrofit2 .http .Path ;
18- import retrofit2 .http .Query ;
16+ import retrofit2 .http .*;
1917
2018import java .time .LocalDate ;
2119import java .util .HashMap ;
@@ -87,6 +85,12 @@ Call<ResultResponse<List<SportSchedule>>> getSportSchedule(@Query("date_start")
8785 @ GET ("/api/sport/sign/chosen" )
8886 Call <ResultResponse <List <ChosenSportSection >>> getChosenSportSections ();
8987
88+ @ POST ("/api/sport/sign/schedule/lessons" )
89+ Call <ResultResponse <List <Long >>> signInLessons (@ Body List <Long > lessonIds );
90+
91+ @ DELETE ("/api/sport/sign/schedule/lessons" )
92+ Call <ResultResponse <List <Long >>> signOutLessons (@ Body List <Long > lessonIds );
93+
9094 // endregion sport
9195
9296 // region other
You can’t perform that action at this time.
0 commit comments