From 44e64aede8fdd35c8cedc3a116056d04f6f27c1e Mon Sep 17 00:00:00 2001 From: chrisgarrity Date: Mon, 3 Dec 2018 10:45:03 -0500 Subject: [PATCH] Add missing tutorial shortcuts Add `/bird` and `/makeitfly` as redirects to the tips page. When the Fly tutorial is created /mak --- src/routes.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/routes.json b/src/routes.json index fba685e7f..3a58d04a2 100644 --- a/src/routes.json +++ b/src/routes.json @@ -478,6 +478,13 @@ { "name": "fly-tutorial-redirect", "pattern": "^/fly/?$", + "routeAlias": "/(makeit)?fly/?$", + "redirect": "/tips" + }, + { + "name": "makeitfly-tutorial-redirect", + "pattern": "^/makeitfly/?$", + "routeAlias": "/(makeit)?fly/?$", "redirect": "/tips" }, { @@ -554,5 +561,10 @@ "name": "makey-tutorial-redirects", "pattern": "^/makey(piano|drum)?/?$", "redirect": "/tips" + }, + { + "name": "bird-redirect", + "pattern": "^/bird/?$", + "redirect": "/tips" } ]