I want to override the route
method from the Page
wagtail model inside one of my models but it seems that it doesn't work, i am aware of the RoutablePageMixin
that isn't what i want,Basically i tried to do something similar to what is in the wagtail's doc like this:
class Echoer(Page):
def route(self, request, path_components):
print('inside route method')
.
.
.
but i never see that print statement get executed when a request arrive for that page, can anyone please explain what is going on?Thank you