lecture-attendance-manager/app/controllers/lecture_controller.rb

49 lines
1.1 KiB
Ruby

class LectureController < ApplicationController
# TODO: Pass the CSRF token to Pushcut
skip_before_action :verify_authenticity_token, only: [:checkin]
def checkin
lecture = Lecture.find(params[:id])
Toggl::start_time_entry(
description: lecture.title,
project_id: lecture.course.toggl_project,
)
end
def start
lecture = Lecture.find(params[:id])
Toggl::start_time_entry(
description: lecture.title,
project_id: lecture.course.toggl_project,
)
if lecture.is_live?
redirect_to lecture.live_video_url, allow_other_host: true
end
if lecture.recording.present?
redirect_to lecture.recording.recording_url, allow_other_host: true
end
end
def start_preparation
lecture = Lecture.find(params[:id])
Toggl::start_time_entry(
description: "#{lecture.title}: Prep",
project_id: lecture.course.toggl_project,
)
end
def start_review
lecture = Lecture.find(params[:id])
Toggl::start_time_entry(
description: "#{lecture.title}: Review",
project_id: lecture.course.toggl_project,
)
end
end