Skip to content

Commit

Permalink
VKT(Backend): Try harder to allow OIDs in TV urls [deploy]
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoivisto committed Nov 15, 2024
1 parent 8e951a7 commit e4503f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/vkt/src/main/java/fi/oph/vkt/api/IndexController.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ public ModelAndView index(final HttpServletResponse response) {
path = {
// Examiner URLs may end with path segment containing dots (OIDs).
// Pass through requests to /vkt/tv/*, as no static assets are served from that path.
"tv/",
"tv/*",
// For local development
"vkt/tv/",
"vkt/tv/*",
"{path:[^.]*}",
"*/{path:[^.]*}",
"*/*/{path:[^.]*}",
Expand Down

0 comments on commit e4503f0

Please sign in to comment.