Skip to content

Commit

Permalink
pass studentId in query string
Browse files Browse the repository at this point in the history
  • Loading branch information
Eschults committed Sep 6, 2023
1 parent 7398c19 commit 1cf93bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/edusign/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def add_student_to_course(course_uid:, student_uid:)
end

def remove_student_from_course(course_uid:, student_uid:)
api :delete, "/course/attendance/#{course_uid}", {studentId: student_uid}.to_json
api :delete, "/course/attendance/#{course_uid}?studentId=#{student_uid}"
end

def send_signature_email(course_uid:)
Expand Down

0 comments on commit 1cf93bb

Please sign in to comment.