i should really test lolcally
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 6s

This commit is contained in:
2026-03-21 15:44:35 -05:00
parent 9645695535
commit efde701ba9

View File

@@ -13,7 +13,7 @@ const routes = [
{ path: "/", component: index }, { path: "/", component: index },
{ path: "/login", component: LoginForm }, { path: "/login", component: LoginForm },
{ path: "/register", component: RegisterForm }, { path: "/register", component: RegisterForm },
{ path: "/users", component: UsersList, { requiresAuth: true } }, { path: "/users", component: UsersList, meta: { requiresAuth: true } },
{ path: "/user/new", component: UserForm, meta: { requiresAuth: true } }, { path: "/user/new", component: UserForm, meta: { requiresAuth: true } },
{ path: "/user/:id", component: UserForm, meta: { requiresAuth: true } } { path: "/user/:id", component: UserForm, meta: { requiresAuth: true } }
]; // I really like this ]; // I really like this