Skip to content

Commit

Permalink
[Student][MBL-14645] Fix for quizzes 2 lti (#951)
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorNeedham authored Aug 24, 2020
1 parent a0ff04e commit ff3e0fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import retrofit2.http.*
object AssignmentAPI {
internal interface AssignmentInterface {
@GET("courses/{courseId}/external_tools/sessionless_launch")
fun getExternalToolLaunchUrl(@Path("courseId") courseId: Long, @Query("id") externalToolId: Long, @Query("assignment_id") assignmentId: Long): Call<LTITool>
fun getExternalToolLaunchUrl(@Path("courseId") courseId: Long, @Query("id") externalToolId: Long, @Query("assignment_id") assignmentId: Long, @Query("launch_type") launchType: String = "assessment"): Call<LTITool>

@GET("courses/{courseId}/assignments/{assignmentId}?include[]=submission&include[]=rubric_assessment&needs_grading_count_by_section=true&override_assignment_dates=true&all_dates=true&include[]=overrides")
fun getAssignment(@Path("courseId") courseId: Long, @Path("assignmentId") assignmentId: Long): Call<Assignment>
Expand Down

0 comments on commit ff3e0fe

Please sign in to comment.