diff --git a/flask/app.py b/flask/app.py index 293eb6e9..a50c61db 100644 --- a/flask/app.py +++ b/flask/app.py @@ -931,6 +931,10 @@ class Flask(_PackageBoundObject): first_registration = True blueprint.register(self, options, first_registration) + def register_blueprints(self, blueprints): + for blueprint in blueprints: + self.register_blueprint(blueprint) + def iter_blueprints(self): """Iterates over all blueprints by the order they were registered.