FlaskBB
A lightweight forum software in Flask
Member
Joined:
Posts: 2

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?

Administrator
avatar
Joined:
Posts: 139

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! 🍻