fix: movie_folder download preference not saving when unchecked

This commit is contained in:
2025-05-19 20:37:10 -05:00
parent c47b1fc23f
commit 70189b95e1
6 changed files with 126 additions and 11 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\User\Action\Result;
use Doctrine\Common\Collections\Collection;
use OneToMany\RichBundle\Contract\ResultInterface;
/** @implements ResultInterface */
class SaveUserDownloadPreferencesResult implements ResultInterface
{
public function __construct(
public array $downloadPreferences,
) {}
}