Closed thth closed 3 years ago
Expanding on https://github.com/elixirschool/school_house/pull/142, adding additional paths that I've noticed having missing redirects.
I added \/?$ to the regex ends because otherwise ~r/lessons\/ecto\/querying/ => "lessons/ecto/querying_basics" would infinitely loop 😅
\/?$
~r/lessons\/ecto\/querying/ => "lessons/ecto/querying_basics"
Expanding on https://github.com/elixirschool/school_house/pull/142, adding additional paths that I've noticed having missing redirects.
I added
\/?$
to the regex ends because otherwise~r/lessons\/ecto\/querying/ => "lessons/ecto/querying_basics"
would infinitely loop 😅