Tagged Questions
2
votes
1answer
65 views
Issue adding has_many to ActiveModel::Serializer
I've been trying to add has_many relationships to my ActiveModel::Serializers for a while now and I'm getting a bevy of errors related to them. It seems like the has_many relationships are calling the ...
0
votes
0answers
62 views
Custom active_model_serializers with non-standard structure
I have objects, which need to be serialized as JSON.
So instead of this:
[
{"id": 1, "category": "books", "title": "Bible"},
{"id": 2, "category": "books", "title": "HHGTTG"},
{"id": 3, ...
2
votes
1answer
73 views
Latest Active_Model_Serializers breaks Devise Views
I am doing some updates to a Rails app that one of our clients uses.
Long story short, it relies on Devise for authentication and Active Model Serializers for serializing data in our API.
The ...
0
votes
1answer
97 views
ActiveModel::Serializers Gem - Versioned API Namespacing Issue
I'm new to Rails and Modules/Namespaces
My Controller is namespaced like this:
module Api
module V1
class PostsController < ApiController
And ActiveModel::Serializers put a "Serializers" ...
1
vote
1answer
589 views
Using ActiveModel::Serializer in Rails - JSON data differs between json and index response
I'm using active_model_serializers gem to control the serialization data, and seeing some odd behavior. My code looks like so:
model & serializer
class User
include Mongoid::Document
field ...