Skip to content

fix(pyramid): include url_redirection tween BEFORE all other cube includeme.

Before this patch, all includeme of all other cubes are called before we add the "add_redirection_rule" directive and "url_redirection" tween. So, if in a cube we need to add a redirection rule, we can't do it, because there is still no directive to achieve this.

Thus, we need to add the directive and the tween before adding all other "includeme" of each cube.

Merge request reports