Add support for route aliases.
1 unresolved thread
1 unresolved thread
Closes #3159210
Merge request reports
Activity
- Resolved by Andrei Mateescu
- Resolved by Andrei Mateescu
added 1615 commits
-
ea9c5272...3004fc8a - 1614 commits from branch
project:11.x
- 1d593c72 - Merge branch '11.x' into 3159210-support-route-aliasing
-
ea9c5272...3004fc8a - 1614 commits from branch
- Resolved by Andrey Postnikov
added 1 commit
- 114423b9 - Fix test coverage and deprecate an old BcRoute class.
added 53 commits
-
114423b9...10154d1a - 51 commits from branch
project:11.x
- d15d32c3 - Merge branch '11.x' into 3159210-support-route-aliasing
- 810fed0b - Add more test coverage.
-
114423b9...10154d1a - 51 commits from branch
added 117 commits
-
15e30a33...4761995e - 107 commits from branch
project:11.x
- 9f92b974 - Add support for route aliases.
- 39ebf0d8 - Fix CS
- d6f32138 - Apply 1 suggestion(s) to 1 file(s)
- 86a1e38f - Update the upgrade function name.
- 5a49143b - Fix phpcs.
- 66a4ae63 - Add some test coverage.
- 278d2637 - Fix test expectation.
- b6066832 - Fix test coverage and deprecate an old BcRoute class.
- 611066ba - Add more test coverage.
- 8b2c14db - Fix CS.
Toggle commit list-
15e30a33...4761995e - 107 commits from branch
- Resolved by Andrey Postnikov
- Resolved by Andrei Mateescu
added 1 commit
- 42d7b577 - use addIndex() as mysql fails to add field with index
1766 */ 1767 function system_update_11201(): void { 1768 $schema = \Drupal::database()->schema(); 1769 1770 if ($schema->tableExists('router') && !$schema->fieldExists('router', 'alias')) { 1771 $spec = [ 1772 'fields' => [ 1773 'alias' => [ 1774 'description' => 'The alias of the route, if applicable.', 1775 'type' => 'varchar_ascii', 1776 'length' => 255, 1777 ], 1778 ], 1779 ]; 1780 $schema->addField('router', 'alias', $spec['fields']['alias']); 1781 $schema->addIndex('router', 'alias', ['alias'], $spec); changed this line in version 25 of the diff
added 1 commit
- 30c35a13 - update fixture for the real schema from core/lib/Drupal/Core/Routing/MatcherDumper.php
- Resolved by Andrei Mateescu
added 40 commits
-
e43c54f0...f9649bc7 - 38 commits from branch
project:11.x
- a5a7bdd8 - Merge branch '11.x' into 3159210-support-route-aliasing
- d5282a18 - Filter aliases in ::getAllRoutes().
-
e43c54f0...f9649bc7 - 38 commits from branch
Please register or sign in to reply