Skip to content

Commit

Permalink
fix(server): admin route forward (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
junglesub authored Oct 29, 2024
1 parent 51d873c commit 4957eac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

@Controller
public class ForwardController {
@RequestMapping(value = { "/", "/{x:[\\w\\-]+}", "/{x:^(?!api$).*$}/*/{y:[\\w\\-]+}" })
@RequestMapping(value = {"/", "/{x:[\\w\\-]+}", "/{x:^(?!api$).*$}/*/{y:[\\w\\-]+}", "/admin/*"})
public String index() {
return "forward:/index.html";
}
Expand Down

0 comments on commit 4957eac

Please sign in to comment.