Remove slight ordering from generics docs

This commit is contained in:
Andrew Godwin 2017-01-26 10:44:08 -08:00
parent 1d1101f7a9
commit a1a1ace23d
2 changed files with 2 additions and 5 deletions

View File

@ -25,7 +25,6 @@ class WebsocketConsumer(BaseConsumer):
http_user = False
# Set to True if you want the class to enforce ordering for you
slight_ordering = False
strict_ordering = False
groups = None

View File

@ -88,9 +88,8 @@ The basic WebSocket generic consumer is used like this::
# (you don't need channel_session_user, this implies it)
http_user = True
# Set to True if you want them, else leave out
# Set to True if you want it, else leave it out
strict_ordering = False
slight_ordering = False
def connection_groups(self, **kwargs):
"""
@ -135,9 +134,8 @@ The JSON-enabled consumer looks slightly different::
class MyConsumer(JsonWebsocketConsumer):
# Set to True if you want them, else leave out
# Set to True if you want it, else leave it out
strict_ordering = False
slight_ordering = False
def connection_groups(self, **kwargs):
"""