ref: master
plugins/elearning_secretary/serializers/elearning_secretary_plugin/document_serializer.rb
1 2 3 4 5 6 7 8 9 10 11 12
class ElearningSecretaryPlugin::DocumentSerializer < ApplicationSerializer attributes :profile attributes :id, :name def profile profile = self.object.profile {id: profile.id, name: profile.name} end end