Tidied up docstrings

This commit is contained in:
Joel Collins 2020-01-14 11:45:04 +00:00
parent a329b9197b
commit 26e719feff
2 changed files with 0 additions and 14 deletions

View file

@ -109,12 +109,6 @@ for name, action in views.enabled_root_actions().items():
def 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))
@ -123,12 +117,6 @@ def routes():
def err_log():
"""
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")
return send_file(

View file

@ -18,8 +18,6 @@ class ExtensionList(View):
"""
Return the current Extension forms
.. :quickref: Extension; Get forms
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
user interface forms.