Skip to content

Commit

Permalink
Fix indexhandler
Browse files Browse the repository at this point in the history
  • Loading branch information
betsytraran committed Aug 21, 2024
1 parent dcf7824 commit b62ee3a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public RouterFunction<ServerResponse> htmlRouter(@Value("classpath:/static/index
.andRoute(RequestPredicates.GET("/dollysoek/**"), indexHandler)
.andRoute(RequestPredicates.GET("/tenor/personer/**"), indexHandler)
.andRoute(RequestPredicates.GET("/admin/orgtilgang/**"), indexHandler)
.andRoute(RequestPredicates.GET("/admin/levendearbeidsforhold/**"), indexHandler);
.andRoute(RequestPredicates.GET("/admin/levendearbeidsforhold/**"), indexHandler)
.andRoute(RequestPredicates.GET("/nyansettelser/**"), indexHandler);
}
}

0 comments on commit b62ee3a

Please sign in to comment.