Pass along new fields to Wings instance when endpoint is used; closes #4048

This commit is contained in:
DaneEveritt 2022-05-28 13:45:23 -04:00
parent 3fceb588fb
commit c14c7b436e
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 57 additions and 33 deletions

View file

@ -20,7 +20,10 @@ class PullFileRequest extends ClientApiRequest implements ClientPermissionsReque
{
return [
'url' => 'required|string|url',
'directory' => 'sometimes|nullable|string',
'directory' => 'nullable|string',
'filename' => 'nullable|string',
'use_header' => 'boolean',
'foreground' => 'boolean',
];
}
}