1
2
3
4
5
6
7
8
9
10
11
12
|
class ElearningSecretaryPlugin::StudentSerializer < ApplicationSerializer
attributes :id, :identifier, :name, :org_ids
#has_many :participations, serializer: ElearningSecretaryPlugin::ParticipationSerializer
def org_ids
self.object.membership_ids
end
end
|