cirandas.net

ref: master

plugins/avaliacoes/serializers/avaliacoes_plugin/grade_serializer.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
class AvaliacoesPlugin::GradeSerializer < ApplicationSerializer

  attribute :grade
  attribute :answered

  belongs_to :question

  def grade
    self.object.grade.to_f
  end

end