Browse Source

removed ssl settings from admin form, because the key must be kept secret and imho most users won't want to change this anyway

Natenom/support-murmur-13-1446181288462
Michael Ziegler 16 years ago
parent
commit
a2f34a764c
  1. 2
      pyweb/mumble/forms.py

2
pyweb/mumble/forms.py

@ -4,6 +4,6 @@ from models import *
class MumbleForm( ModelForm ): class MumbleForm( ModelForm ):
class Meta: class Meta:
model = Mumble; model = Mumble;
exclude = ( 'dbus', 'booted', 'addr', 'port', 'users', 'bwidth', );
exclude = ( 'dbus', 'booted', 'addr', 'port', 'users', 'bwidth', 'sslcrt', 'sslkey', );
Loading…
Cancel
Save