mirror of
https://github.com/strapi/strapi.git
synced 2025-07-03 15:11:19 +00:00
11 lines
162 B
JavaScript
11 lines
162 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
module.exports = ({ params = {}, query = {}, body = {} }, overrides = {}) => ({
|
||
|
params,
|
||
|
query,
|
||
|
request: {
|
||
|
body,
|
||
|
},
|
||
|
...overrides,
|
||
|
});
|