I'm trying to add .rss to the end of a parameterized url:
.get(
"/searches/history/tags/:tag.rss",
controller.getHistoryByTagRss.bind(controller)
)
I need a way to isolate the :tag from the .rss
Currently this isn't working.
I'm trying to add .rss to the end of a parameterized url:
.get(
"/searches/history/tags/:tag.rss",
controller.getHistoryByTagRss.bind(controller)
)
I need a way to isolate the :tag from the .rss
Currently this isn't working.
Copyright © 2021 Jogjafile Inc.
Fixed by upgrading oak to latest version and moving route above default route.