Module: IVLE::Timetable
- Included in:
- API
- Defined in:
- lib/IVLE/api/timetable.rb
Instance Method Summary collapse
- #timetable_module(course_id) ⇒ Object
- #timetable_module_exam(course_id) ⇒ Object
- #timetable_student(acad_year, semester) ⇒ Object
- #timetable_student_module(course_id) ⇒ Object
Instance Method Details
#timetable_module(course_id) ⇒ Object
7 8 9 |
# File 'lib/IVLE/api/timetable.rb', line 7 def (course_id) api 'Timetable_Module', courseid: course_id end |
#timetable_module_exam(course_id) ⇒ Object
15 16 17 |
# File 'lib/IVLE/api/timetable.rb', line 15 def (course_id) api 'Timetable_ModuleExam', courseid: course_id end |
#timetable_student(acad_year, semester) ⇒ Object
3 4 5 |
# File 'lib/IVLE/api/timetable.rb', line 3 def (acad_year, semester) api 'Timetable_Student', acadyear: acad_year, semester: semester end |
#timetable_student_module(course_id) ⇒ Object
11 12 13 |
# File 'lib/IVLE/api/timetable.rb', line 11 def (course_id) api 'Timetable_Student_Module', courseid: course_id end |