Tidied up docstrings
This commit is contained in:
parent
a329b9197b
commit
26e719feff
2 changed files with 0 additions and 14 deletions
|
|
@ -109,12 +109,6 @@ for name, action in views.enabled_root_actions().items():
|
||||||
def routes():
|
def routes():
|
||||||
"""
|
"""
|
||||||
List of all connected API routes
|
List of all connected API routes
|
||||||
|
|
||||||
.. :quickref: Global; Routes
|
|
||||||
|
|
||||||
:>header Accept: application/json
|
|
||||||
:>header Content-Type: application/json
|
|
||||||
:status 200: stream active
|
|
||||||
"""
|
"""
|
||||||
return jsonify(list_routes(app))
|
return jsonify(list_routes(app))
|
||||||
|
|
||||||
|
|
@ -123,12 +117,6 @@ def routes():
|
||||||
def err_log():
|
def err_log():
|
||||||
"""
|
"""
|
||||||
Most recent 1mb of log output
|
Most recent 1mb of log output
|
||||||
|
|
||||||
.. :quickref: Global; Log
|
|
||||||
|
|
||||||
:>header Accept: application/json
|
|
||||||
:>header Content-Type: application/json
|
|
||||||
:status 200: stream active
|
|
||||||
"""
|
"""
|
||||||
timestamp = datetime.now().strftime("%Y-%m-%d_%H-%M-%S")
|
timestamp = datetime.now().strftime("%Y-%m-%d_%H-%M-%S")
|
||||||
return send_file(
|
return send_file(
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,6 @@ class ExtensionList(View):
|
||||||
"""
|
"""
|
||||||
Return the current Extension forms
|
Return the current Extension forms
|
||||||
|
|
||||||
.. :quickref: Extension; Get forms
|
|
||||||
|
|
||||||
Returns an array of present Extension forms (describing Extension user interfaces.)
|
Returns an array of present Extension forms (describing Extension user interfaces.)
|
||||||
Please note, this is *not* a list of all enabled Extensions, only those with associated
|
Please note, this is *not* a list of all enabled Extensions, only those with associated
|
||||||
user interface forms.
|
user interface forms.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue