Skip to content

Commit

Permalink
add routes that guests can access (#1302)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmfalke authored Dec 17, 2024
1 parent 467eb3b commit b931fa1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/libs/wdk-client/src/Core/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ const routes: RouteEntry[] = [
{...props.match.params}
/>
),
requiresLogin: false,
},

{
Expand Down Expand Up @@ -290,16 +291,19 @@ const routes: RouteEntry[] = [
{
path: '/401',
component: PermissionDenied,
requiresLogin: false,
},

{
path: '/404',
component: NotFound,
requiresLogin: false,
},

{
path: '/500',
component: Error,
requiresLogin: false,
},

{
Expand Down

0 comments on commit b931fa1

Please sign in to comment.