jsonapi-utils icon indicating copy to clipboard operation
jsonapi-utils copied to clipboard

Build JSON API-compliant APIs on Rails with no (or less) learning curve.

Results 25 jsonapi-utils issues
Sort by recently updated
recently updated
newest added

Currently there's no support to [render multiple invalid AR objects](https://github.com/tiagopog/jsonapi-utils/blob/master/lib/jsonapi/utils/response/formatters.rb#L52-L58) like this: ```ruby user = User.new user.valid? #=> false post = user.posts.new post.valid? #=> false jsonapi_utils json: [user, post], status:...

new feature

``` rails (4.2.8) jsonapi-utils (0.4.9) jsonapi-resources (~> 0.8.0) ``` I have a nested resource where the `index` action has a code path that executes `resource_params` which ends up producing: ```...

I have two models that we'd like to be created in the same request. **Resource** ``` module API module V1 class ProjectToolboxTalkResource < JSONAPI::Resource attributes :date has_one :toolbox_talk has_one :superintendent...

This is in reference to v0.6.0. I use [active_interaction](https://github.com/orgsync/active_interaction) for services in lots of my projects, and recently started using this gem to enforce JSONAPI spec more easily. When I...

HI I see that there are a lot of commits but the version on gemfile repository does not include those: # Commits not released ![image](https://user-images.githubusercontent.com/76348/185623803-1ad059be-1270-4ac9-a357-c5d41eef48cf.png) # Latest release ![image](https://user-images.githubusercontent.com/76348/185623940-aa91c9f8-fc80-49d0-a182-0e61f0182a8c.png) #...