You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
324 B
13 lines
324 B
json.data do
|
|
json.array! @watch_course_videos do |d|
|
|
json.id d.id
|
|
json.user_name d.user&.real_name
|
|
json.is_finished d.is_finished ? true : false
|
|
json.total_duration d.total_duration.round(0)
|
|
json.feq d['freq']
|
|
json.start_at d.start_at.to_s
|
|
json.end_at d.end_at.to_s
|
|
end
|
|
end
|
|
|
|
json.count @count |