Browse Source

add support for the "boot" config field

Natenom/support-murmur-13-1446181288462
Michael Ziegler 15 years ago
parent
commit
8e5296e03e
  1. 1
      pyweb/mumble/models.py

1
pyweb/mumble/models.py

@ -137,6 +137,7 @@ class Mumble( models.Model ):
textlen = mk_config_bool_property( "textmessagelength", _("Maximum length of text messages") ) textlen = mk_config_bool_property( "textmessagelength", _("Maximum length of text messages") )
html = mk_config_bool_property( "allowhtml", _("Allow HTML to be used in messages") ) html = mk_config_bool_property( "allowhtml", _("Allow HTML to be used in messages") )
bonjour = mk_config_bool_property( "bonjour", _("Publish this server via Bonjour") ) bonjour = mk_config_bool_property( "bonjour", _("Publish this server via Bonjour") )
autoboot= mk_config_bool_property( "boot", _("Boot Server when Murmur starts") )
def getBooted( self ): def getBooted( self ):
if self.id is not None: if self.id is not None:

Loading…
Cancel
Save