mirror of
https://github.com/strapi/strapi.git
synced 2025-07-29 20:10:21 +00:00
9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const parseMultipartBody = require('./parse-multipart');
|
||
|
|
||
|
module.exports = ctx => {
|
||
|
const { body } = ctx.request;
|
||
|
return ctx.is('multipart') ? parseMultipartBody(ctx) : { data: body };
|
||
|
};
|