Add static variable for MiddlewareUniversalName. #581
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi,
I am working on a project that uses sharp as the dashboard.
I need to use it both to login to the 'central' and 'tenants', and when I found the solution (use the Feature UniversalRoutes), I noticed that Sharp does not publish its route, so I found another way to solve the problem, which would be to extend the UniversalRoutes class and then change
universal
tosharp_web
(middleware that sharp uses on all of its dashboard routes), so that I don't have to add the 'universal' class to the routes (changing something in the vendor dir or copying all the sharp routes to laravel app).Thinking about it, I found it interesting to do this PR by creating a
public static
variable, making it possible to extend the class and then just change the middleware name to something specific (in case you happen to fall into the same problem with someone).Sorry about my english, isn't my first language.