-
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Though on symfonycasts/reset-password-bundle
#10
Comments
I love the idea. The bundle should propagate best practices. |
Can you provide me any links about that ? |
There is a crazy machine, which tries to find stuff for you ... I think it is called Google 😁 Try to search for "symfony updated security system" or stuff like that. It was introduced with 5.2 and then further improved. Most of the time I follow Twitter and RSS links... which I do not bookmark. |
Ah yes !
So, does that mean that TablerBundle will be for TBH I upgrade it because of that (and PHP 8 too) |
Yeah. Maybe the bundle should be SF 5+ only. |
Back to topic: if you want to integrate a new form, please do so. |
Which security system is active in Symfony has little effect on this, right? Both the 'old' security system and the new one have some sort of authenticator class, which takes the parameters out of the request and does 'the thing'. So, which parameters to take out of the request has nothing to do with the security system in place, and thus with the Symfony version. The only thing - I think - this issue wanted, is to align the form input names used in the examples / templates, with what Am I correct in this? Because otherwise I don't get it :). |
FOSUserBundle being deprecated,
Symfony allows devs by using MakerBundle to implement what is missing from FOSUserBundle.
eg :
make:user
make:reset-password
depend onsymfonycasts/reset-password-bundle
make:registration-form
ATM, TablerBundle use raw input and custom names to implement the template,
which doesn't work with what MakerBundle has created.
Wouldn't it be better to use forms that MakerBundle "auto-code/auto-create" ?
Instead of creating our own form by raw html inputs.
I know Tabler.io use raw inputs to match with most uses,
but in our case we are making a Bundle for Symfony.
It will be more natural to use Symfony form instead of manual HTML inputs.
What do you think about that @kevinpapst ?
The text was updated successfully, but these errors were encountered: