change routing for auth and auth/callback (#2493)

This commit is contained in:
Tessa Thornton
2019-08-23 15:00:36 -04:00
committed by Kim Gardner
parent 07df7ac182
commit ffecd5e981
2 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ export default function({
{ from: /^\/account/, to: "/account.html" },
{ from: /^\/admin/, to: "/admin.html" },
{ from: /^\/embed\/stream/, to: "/stream.html" },
{ from: /^\/embed\/auth/, to: "/auth.html" },
{ from: /^\/embed\/auth$/, to: "/auth.html" },
{ from: /^\/embed\/auth\/callback/, to: "/auth-callback.html" },
{ from: /^\/install/, to: "/install.html" },
],
+8 -8
View File
@@ -121,14 +121,6 @@ export function mountClientRoutes(
entrypoint: entrypoints.get("stream"),
})
);
router.use(
"/embed/auth",
createClientTargetRouter({
staticURI,
cacheDuration: false,
entrypoint: entrypoints.get("auth"),
})
);
router.use(
"/embed/auth/callback",
createClientTargetRouter({
@@ -137,6 +129,14 @@ export function mountClientRoutes(
entrypoint: entrypoints.get("authCallback"),
})
);
router.use(
"/embed/auth",
createClientTargetRouter({
staticURI,
cacheDuration: false,
entrypoint: entrypoints.get("auth"),
})
);
// Add the standalone targets.
router.use(