Source code for planning_poker.apps
from channels_presence.apps import RoomsConfig
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
[docs]class PlanningPokerConfig(AppConfig):
default = True
default_auto_field = 'django.db.models.AutoField'
name = 'planning_poker'
verbose_name = _('Planning Poker')
[docs]class ChannelsPresenceConfig(RoomsConfig):
default_auto_field = 'django.db.models.AutoField'
name = 'channels_presence'
verbose_name = _('Channels Presence')