forked from orbit-oss/flask
Merge pull request #1912 from pallets/revert-1811-iss1809_register_blueprint_docs
Revert "Addressing Issue 1809"
This commit is contained in:
commit
c80ea941d0
1 changed files with 1 additions and 16 deletions
17
flask/app.py
17
flask/app.py
|
|
@ -935,22 +935,7 @@ class Flask(_PackageBoundObject):
|
|||
|
||||
@setupmethod
|
||||
def register_blueprint(self, blueprint, **options):
|
||||
"""Register a blueprint on the application. For information about
|
||||
blueprints head over to :ref:`blueprints`.
|
||||
|
||||
The blueprint name is passed in as the first argument.
|
||||
Options are passed as additional keyword arguments and forwarded to
|
||||
`blueprints` in an "options" dictionary.
|
||||
|
||||
:param subdomain: set a subdomain for the blueprint
|
||||
:param url_prefix: set the prefix for all URLs defined on the blueprint.
|
||||
``(url_prefix='/<lang code>')``
|
||||
:param url_defaults: a dictionary with URL defaults that is added to
|
||||
each and every URL defined with this blueprint
|
||||
:param static_folder: add a static folder to urls in this blueprint
|
||||
:param static_url_path: add a static url path to urls in this blueprint
|
||||
:param template_folder: set an alternate template folder
|
||||
:param root_path: set an alternate root path for this blueprint
|
||||
"""Registers a blueprint on the application.
|
||||
|
||||
.. versionadded:: 0.7
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue