-
Notifications
You must be signed in to change notification settings - Fork 78
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
Add support for deep links #468
Comments
After a quick look at the code, i think it could be possible to use a single view with a I guess the handling of the new |
The fact that we use a seperate edit view for each article type also prevents to include articles in the admin search results. See #480 |
I had a look at the proposed solution of using a single view with a
|
Currently every type has its own detail view:
SuluArticleBundle/Admin/ArticleAdmin.php
Line 241 in 146bc85
This currently this make it impossible to use the sulu deep link feature. #467. From DX this is also annoying because the
ArticleAdmin::EDIT_FORM_VIEW
constant does link to a view which does not exist.We need to find a way to get ride of the type specific routes or a way to support deep links to this routes.
So I'm questioning here is do we really need a detail view per type or can we merge them into 1 detail view which is used by every tab?
The text was updated successfully, but these errors were encountered: