You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running The laravel installer or jetstream install command, the CreateNewUser Fortify Action generated does not match the stub within the fortify project.
For example. within the fortify package the CreateNewUser Fortify Action uses the proper PasswordValidationRules trait for the password validator. When that stub is published to my project, the CreateNewUser Action does not use the PasswordValidationRules trait and instead has 'password' => ['required', 'string', new Password, 'confirmed'],
I've tried removing any composer cache but it continues to happen.
``
Steps To Reproduce:
laravel new laravel8-jet --jet
Select inertia, and no teams
OR
laravel new laravel8-jet
composer require laravel/jetstream
php artisan jetstream:install
Now view the laravel8-jet/app/Actions/Fortify/CreateNewUser file and compare to the package's stub version.
Here is a screenshot of Fortify's stub and Jetstream's stub:
The text was updated successfully, but these errors were encountered:
mmillis1
changed the title
Incorrect Fortidy CreateNewUser Action Stub Being Published #30
Incorrect Fortify CreateNewUser Action Stub Being Published #30
Sep 12, 2020
mmillis1
changed the title
Incorrect Fortify CreateNewUser Action Stub Being Published #30
Incorrect Fortify CreateNewUser Action Stub Being Published
Sep 12, 2020
Description:
When running The laravel installer or jetstream install command, the CreateNewUser Fortify Action generated does not match the stub within the fortify project.
For example. within the fortify package the CreateNewUser Fortify Action uses the proper
PasswordValidationRules
trait for the password validator. When that stub is published to my project, the CreateNewUser Action does not use the PasswordValidationRules trait and instead has'password' => ['required', 'string', new Password, 'confirmed'],
I've tried removing any composer cache but it continues to happen.
``
Steps To Reproduce:
laravel new laravel8-jet --jet
Select inertia, and no teams
OR
Now view the laravel8-jet/app/Actions/Fortify/CreateNewUser file and compare to the package's stub version.
Here is a screenshot of Fortify's stub and Jetstream's stub:
The text was updated successfully, but these errors were encountered: