We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
allow_transactions
cache_formatters
1 parent f92c89a commit 2a43cafCopy full SHA for 2a43caf
1 file changed
README.md
@@ -1928,6 +1928,14 @@ JSONAPI.configure do |config|
1928
# Controls the serialization of resource linkage for non compound documents
1929
# NOTE: always_include_to_many_linkage_data is not currently implemented
1930
config.always_include_to_one_linkage_data = false
1931
+
1932
+ # Allows transactions for creating and updating records
1933
+ # Set this to false if your backend does not support transactions (e.g. Mongodb)
1934
+ self.allow_transactions = true
1935
1936
+ # Formatter Caching
1937
+ # Set to false to disable caching of string operations on keys and links.
1938
+ self.cache_formatters = true
1939
end
1940
```
1941
0 commit comments