Sha256: 04c5003ea33022a6bb4c7636f5570271356142cdebd82e3d80727aeb8fd58721
Contents?: true
Size: 433 Bytes
Versions: 11
Compression:
Stored size: 433 Bytes
Contents
module SocialNetworking module Serializers # Serializes Profile Answer models. class ProfileAnswerSerializer < Serializer def to_serialized { id: model.id, profile_id: model.social_networking_profile_id, profile_question_id: model.social_networking_profile_question_id, order: model.order, answer_text: model.answer_text } end end end end
Version data entries
11 entries across 11 versions & 1 rubygems