refactor: download controller params
Signed-off-by: Varun Patil <radialapps@gmail.com>pull/672/head
parent
a11b347c6f
commit
d4fcf94047
|
@ -42,11 +42,10 @@ class DownloadController extends GenericApiController
|
||||||
*
|
*
|
||||||
* Request to download one or more files
|
* Request to download one or more files
|
||||||
*/
|
*/
|
||||||
public function request(): Http\Response
|
public function request($files): Http\Response
|
||||||
{
|
{
|
||||||
return Util::guardEx(function () {
|
return Util::guardEx(function () use ($files) {
|
||||||
// Get ids from body
|
// Get ids from body
|
||||||
$files = $this->request->getParam('files');
|
|
||||||
if (null === $files || !\is_array($files)) {
|
if (null === $files || !\is_array($files)) {
|
||||||
throw Exceptions::MissingParameter('files');
|
throw Exceptions::MissingParameter('files');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue