Skip to content
This repository has been archived by the owner on Jan 20, 2023. It is now read-only.

Commit

Permalink
Logic update required for change to format param. crud unit tests now…
Browse files Browse the repository at this point in the history
… passing.
  • Loading branch information
Marianne Myers authored and grtjn committed Jun 23, 2020
1 parent be23c70 commit 96c4e4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grove-default-routes/crud.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ var provider = (function() {
uri: uri,
transform: view ? view.transform : null,
category: view ? view.category : null,
format: view ? view.format : config.format || 'json'
format: (view ? view.format : config.format) || 'json'
};

docsBackendCall(req, res, config, req.method, uri, params, function(
Expand Down

0 comments on commit 96c4e4c

Please sign in to comment.