In the following `View`, the rules of the URL will be `/foobar/`. ```py import flask_classy class FooBarView(flask_classy.FlaskView): def post(self): pass ``` However, I think that it is more intuitive to become `/foo_bar/`.
In the following
View, the rules of the URL will be/foobar/.However, I think that it is more intuitive to become
/foo_bar/.