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.
8 lines
323 B
8 lines
323 B
json.course do
|
|
json.(@course, :id, :name)
|
|
json.code_halt @course.invite_code_halt == 1
|
|
json.invite_code @course.invite_code_halt == 0 ? @course.generate_invite_code : ""
|
|
json.teacher_name @course.teacher.real_name
|
|
json.teacher_img url_to_avatar(@course.teacher)
|
|
json.teacher_school @course.school.try(:name)
|
|
end |