-
I've had my eye on this project since it was announced back in '18. I work on a large JSON API that uses ActiveModelSerializers, and we've been "stuck" on the 0.8 version of the gem ever since that p…
-
```ruby
class SerializablePost < JSONAPI::Serializable::Resource
type 'posts'
attributes :title, :body
attribute :date do
@object.created_at
end
belongs_to :author
has_…
-
[ActiveModelSerializers](https://github.com/rails-api/active_model_serializers) allows one to set it as the default Rails json serializer.
Is it possible to do so with this gem?
-
Hi,
When my model is invalid I render the response (from controller) like this:
`render jsonapi_errors: activity.errors, status: :unprocessable_entity`
It serializes the model error as follow…
-
Hi,
we use a version parameter inside of the `Accept` header to be able to switch Api versions. The different versions are grouped in modules. And to remove these modules as namespaces from the gener…
-
If `raise_if_parameters_not_allowed` is set to false, then something strange happens.
In https://github.com/cerebris/jsonapi-resources/blob/master/lib/jsonapi/request_parser.rb#L237 the params are …
-
## This issue is a (choose one):
- [x] Problem/bug report.
- [ ] Feature request.
- [ ] Request for support. **Note: Please try to avoid submitting issues for support requests. Use [Gitter](https…
-
Create a template file for the initialzer `JSONAPI.configure`
Running
``` shell
$> rails generator jsonapi:initializer
Running via Spring preloader in process 102107
create config/initialize…
-
When I start implementing caching in my app, I noticed [CachedResourcesProcessor#process_resources](https://github.com/jsonapi-rb/jsonapi-renderer/blob/daa95d830a6f71a39304c8db20c8acd89e34b7a7/lib/jso…
-
I believe [this commit](https://github.com/jsonapi-rb/jsonapi-serializable/commit/e95fd7e142ec35befacee823608862bf4c233c60), which changed from `prepend` to `extend`, broke the conditional support. I …