2016-06-27 16:03:07 +08:00
|
|
|
module Mobile
|
|
|
|
module Entities
|
|
|
|
class Exercise < Grape::Entity
|
2016-07-14 16:54:43 +08:00
|
|
|
include Redmine::I18n
|
|
|
|
include ApplicationHelper
|
|
|
|
include ApiHelper
|
|
|
|
def self.exercise_expose(field)
|
|
|
|
expose field do |f,opt|
|
|
|
|
if f.is_a?(Hash) && f.key?(field)
|
|
|
|
if field == :created_on
|
|
|
|
format_time(f[field])
|
|
|
|
else
|
|
|
|
f[field]
|
|
|
|
end
|
|
|
|
elsif f.is_a?(::Exercise)
|
|
|
|
if f.respond_to?(field)
|
|
|
|
f.send(field)
|
|
|
|
else
|
|
|
|
case field
|
|
|
|
when :coursename
|
|
|
|
f.course.nil? ? "" : f.course.name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-06-27 16:03:07 +08:00
|
|
|
expose :exercise_name
|
|
|
|
expose :exercise_description
|
2016-07-14 16:54:43 +08:00
|
|
|
exercise_expose :coursename #所属班级名
|
2016-06-27 16:03:07 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|