Lucas Hosseini
Lucas Hosseini
Hi @a-k-s-h-a-y – Thanks for your report. 1. I'm not sure about this one. @patapizza? 2. C.f. https://github.com/facebook/duckling/issues/178 and other related issues: Duckling returns an exclusive upper limit for time...
Thanks for reporting this, I'm on it 👍.
Hi @KidA001 – the `class` render option takes a hash that maps your models to your serializers. In your case, you should do: ```ruby render jsonapi: Project.all, class: { Project:...
@kapso @siepet If you look at the code history, it used to be that way. The reasons it was modified: 1. It introduces possible inconsistencies (say you're requesting a post...
And as mentioned, if you have a consistent way of deriving the serializer name from the class name (which you should probably have), you can use a dynamic hash to...
Thanks for all your work @JoeWoodward, and sorry not to have replied earlier. I would lean towards mimicking what happens when a broken JSON payload is set with content-type `application/json`,...
Could you try replacing `class: {Group: SerializableGroup }` with `class: {Group: ::SerializableGroup } `?
Hi @julianhirt – it is planned but I'm rather busy at the moment so can't really give an ETA on the docs. In the meantime, feel free to ask any...
@Xe Short answer is: this is an open source project, I built/maintain it on my free time, feel free to make a PR to https://github.com/jsonapi-rb/jsonapi-rb.github.io
First, `class_name: 'User'` has no effect. Not sure why the `included` section is left out though.