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