7 lines
230 B
Python
7 lines
230 B
Python
from django_eventstream.channelmanager import DefaultChannelManager
|
|
|
|
|
|
class DeploymentChannelManager(DefaultChannelManager):
|
|
def can_read_channel(self, user, channel):
|
|
return user is not None and user.is_authenticated
|