Contents:
transactional()
Decorate controllers whose DB operations should be performed in one transaction
Example:
@bp.route("/members", method=["POST"]) @transactional def create_member(): ...