Christian Gripp
Christian Gripp
This feature does not exist, because there is no `RequestPassword` model class to map this data. Feel free to provide a PR which add this feature @fodger .
It's no featuring I'm planing to add, but you can provide a PR with an extension point. Maybe you can use the event dispatcher to add custom logic when creating...
AFAIK this is a doctrine / PHP8 bug. You need to add a default value here: ```php #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'integer')] protected ?string $id = null; ```
> We don't have a tons of maintainers so we cannot keep everything without help. So we might use the same strategy as we're using for BlockBundle and cache, we...
> Dare i say tailwind? Would also be a nice addition. I would like to make an effort in this part. Utility first components would be easier to maintain i...
> Inject admin to Block will not be working? That's the current solution for most blocks (e.g. https://github.com/sonata-project/SonataMediaBundle/blob/3.x/src/Block/MediaBlockService.php#L144), but it looks hacky. This will add a hard admin dependency to...
> I don't fully understand the issue since I personally already use the EntityType in the admin. Yes, you can use the `EntityType` for a block, but you can't create...
When updating to admin lte, maybe you can look for some custom html attributes like `sonata-filter` which should be `data-sonata-filter`. I tried this few years ago: https://github.com/sonata-project/SonataAdminBundle/pull/3312/files This would close...
I got this feature running on my local machine, but I need some time to integrate this into the existing sonata code.
I wonder if we really need the filter form elements on the batch pages. We could also store the selected filter values inside the user session. This could solve the...