-
Notifications
You must be signed in to change notification settings - Fork 294
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
Provide a way of customizing/disabling the default routes #13
Conversation
The Jetstream's version was merged while this one was closed? I figured since these two packages went hand-in-hand that they should be consistent in functionality. I want to move my application login pages away from common endpoints that are typically brute forced. ( |
Thanks @taylorotwell Much appreciated! =) |
Why was the PR only partially merged? |
@anhofmann you can just copy/paste them into your own routes. |
I copied "vendor/laravel/fortify/routes/routes.php" to "routes/fortify.php". Then in "App/Providers/FortifyServiceProvider.php":
Did the same with jetstream's routes |
A mirror of Jetstream's laravel/jetstream#67
Enables a user to call Fortify::ignoreRoutes() in a provider's register method to disable the default routes and provide their own.
Also enables publishing of default routes into userland.
Relevant are #9, #10