most Flask app would have routes like @app.route('/', methods=['GET', 'POST']) etc...
how come i dont see any @route annotation in the source code?
You can see the views here:
https://github.com/flaskbb/flaskbb/blob/master/flaskbb/forum/views.py#L1113
flask has more ways to register routes. We decided to use the above approach which we thought works best with our plugin architecture
Cheers! 🍻