Commit 26e719fe authored by Joel Collins's avatar Joel Collins
Browse files

Tidied up docstrings

parent a329b919
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
@@ -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(
+0 −2
Original line number Diff line number Diff line
@@ -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.