diff options
author | gumi <git@gumi.ca> | 2019-08-12 17:53:40 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2019-08-12 17:53:40 -0400 |
commit | 87a05d28c09af189ede4450402bc9542cc8a0ba7 (patch) | |
tree | c5b80f85ba222a78bfcd701d5df4633b2e354e29 | |
parent | 4fb7b8d91b1ee690eed29908170bd5789075e76b (diff) | |
download | website-87a05d28c09af189ede4450402bc9542cc8a0ba7.tar.gz website-87a05d28c09af189ede4450402bc9542cc8a0ba7.tar.bz2 website-87a05d28c09af189ede4450402bc9542cc8a0ba7.tar.xz website-87a05d28c09af189ede4450402bc9542cc8a0ba7.zip |
add a redirect for the old account recovery page
-rw-r--r-- | src/redirects.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/redirects.ts b/src/redirects.ts index e122c0d..63860cf 100644 --- a/src/redirects.ts +++ b/src/redirects.ts @@ -23,6 +23,10 @@ const redirects = [ self.location.href = "https://wiki.themanaworld.org/index.php/Downloads"; } }, + { + path: "/recover", + redirect: { name: "support" }, + }, ]; export default redirects; |