Sha256: 5edeaf68e02ce170244659039fe37db570a7dc877b706b1e7186b311e4dc1350

Contents?: true

Size: 593 Bytes

Versions: 1

Compression:

Stored size: 593 Bytes

Contents

module RestPack::Core::Service::Serializers
  class ApplicationSerializer
    include RestPack::Serializer

    self.model_class = RestPack::Core::Service::Models::Application
    self.key = :applications

    attributes :id
  end
end

#TODO: GJ:  remove once this has been addressed:
#           https://github.com/RestPack/restpack_serializer/issues/41
module RestPack::Core::Service::Models
  class ApplicationSerializer < RestPack::Core::Service::Serializers::ApplicationSerializer

  end
end

class ApplicationSerializer < RestPack::Core::Service::Serializers::ApplicationSerializer

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
restpack_core_service-0.0.8 lib/restpack_core_service/serializers/application_serializer.rb