15 lines
345 B
Ruby
15 lines
345 B
Ruby
class LectureController < ApplicationController
|
|
def start
|
|
lecture = Lecture.find(params[:id])
|
|
|
|
Toggl::start_time_entry(
|
|
description: lecture.title,
|
|
project_id: lecture.course.toggl_project,
|
|
)
|
|
|
|
if lecture.recording.present?
|
|
redirect_to lecture.recording.recording_url, allow_other_host: true
|
|
end
|
|
end
|
|
end
|