Compare commits
2 Commits
eaf014b7c7
...
c3908b714b
Author | SHA1 | Date |
---|---|---|
philipp lang | c3908b714b | |
philipp lang | 2f1e02151f |
|
@ -17,6 +17,6 @@ class ListFilesAction
|
||||||
*/
|
*/
|
||||||
public function handle(ActionRequest $request, Fileshare $fileshare): DataCollection
|
public function handle(ActionRequest $request, Fileshare $fileshare): DataCollection
|
||||||
{
|
{
|
||||||
return ResourceData::collection($fileshare->type->getSubDirectories($request->input('parent')))->wrap('data');
|
return ResourceData::collect($fileshare->type->getSubDirectories($request->input('parent')))->wrap('data');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit aa862f1264bd86c904baa4c2b6fd05a898b653e7
|
Subproject commit 7c876d75c9b6ec9fd36511b743beae0d40532878
|
|
@ -141,7 +141,7 @@ class StoreTest extends TestCase
|
||||||
])->assertSessionHasErrors($errorField);
|
])->assertSessionHasErrors($errorField);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected static function validationDataProvider(): Generator
|
public static function validationDataProvider(): Generator
|
||||||
{
|
{
|
||||||
yield [
|
yield [
|
||||||
['type' => 'aaa'],
|
['type' => 'aaa'],
|
||||||
|
|
Loading…
Reference in New Issue