Merge pull request #1570 from 5onic/FIX-add-missed-documentation

Added documentation for missed arguments
This commit is contained in:
7 2019-05-12 21:53:30 -07:00 committed by GitHub
commit 42b9fa3779
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -441,8 +441,12 @@ class Sanic:
): ):
"""Decorate a function to be registered as a websocket route """Decorate a function to be registered as a websocket route
:param uri: path of the URL :param uri: path of the URL
:param host: Host IP or FQDN details
:param strict_slashes: If the API endpoint needs to terminate
with a "/" or not
:param subprotocols: optional list of str with supported subprotocols :param subprotocols: optional list of str with supported subprotocols
:param host: :param name: A unique name assigned to the URL so that it can
be used with :func:`url_for`
:return: decorated function :return: decorated function
""" """
self.enable_websocket() self.enable_websocket()