Compare commits
No commits in common. "c3908b714bdc826cb42a5069367a2ec602022eb5" and "eaf014b7c7dc2373dcd5e9fa8ca9f04e20ec9401" have entirely different histories.
c3908b714b
...
eaf014b7c7
|
@ -17,6 +17,6 @@ class ListFilesAction
|
||||||
*/
|
*/
|
||||||
public function handle(ActionRequest $request, Fileshare $fileshare): DataCollection
|
public function handle(ActionRequest $request, Fileshare $fileshare): DataCollection
|
||||||
{
|
{
|
||||||
return ResourceData::collect($fileshare->type->getSubDirectories($request->input('parent')))->wrap('data');
|
return ResourceData::collection($fileshare->type->getSubDirectories($request->input('parent')))->wrap('data');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 7c876d75c9b6ec9fd36511b743beae0d40532878
|
Subproject commit aa862f1264bd86c904baa4c2b6fd05a898b653e7
|
|
@ -141,7 +141,7 @@ class StoreTest extends TestCase
|
||||||
])->assertSessionHasErrors($errorField);
|
])->assertSessionHasErrors($errorField);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function validationDataProvider(): Generator
|
protected static function validationDataProvider(): Generator
|
||||||
{
|
{
|
||||||
yield [
|
yield [
|
||||||
['type' => 'aaa'],
|
['type' => 'aaa'],
|
||||||
|
|
Loading…
Reference in New Issue