Initial commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
const validPaths = ["/", "/rules", "/test"];
|
||||
|
||||
export default defineNuxtRouteMiddleware(async (to, from) => {
|
||||
const config = useRuntimeConfig();
|
||||
if (to.path == "/login") {
|
||||
console.log("hey")
|
||||
const code = to.query.code;
|
||||
if (!code) {
|
||||
navigateTo(config.public.discordLoginEndpoint, { external: true });
|
||||
} else {
|
||||
navigateTo("/login");
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
if (validPaths.includes(to.path)) {
|
||||
return;
|
||||
}
|
||||
if (to.path !== "/") {
|
||||
return navigateTo("/");
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user