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,13 @@
<?php
namespace App\User\Action\Command;
use OneToMany\RichBundle\Contract\CommandInterface;
/** @implements CommandInterface<SaveUserMediaPreferencesCommand> */
class SaveUserDownloadPreferencesCommand implements CommandInterface
{
public function __construct(
public string $movie_folder,
) {}
}