Permissions

class djangochannelsrestframework.permissions.AllowAny[source]

Allow any permision class

class djangochannelsrestframework.permissions.BasePermission[source]

Base permision class

Notes

You should extend this class and overide the has_permision method to create your own permission class.

async has_permision (scope, consumer, action, **kwargs)
class djangochannelsrestframework.permissions.IsAuthenticated[source]

Allow authenticated only class