You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default fast_jsonapi underscores the key names. It supports the same key transforms that are supported by AMS. Here is the syntax of specifying a key transform
141
+
142
+
```ruby
143
+
classMovieSerializer
144
+
includeFastJsonapi::ObjectSerializer
145
+
# Available options :camel, :camel_lower, :dash, :underscore(default)
146
+
set_key_transform :camel
147
+
end
148
+
```
149
+
Here are examples of how these options transform the keys
0 commit comments