|
@ -27,7 +27,7 @@ from mctl import * |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Mumble( models.Model ): |
|
|
class Mumble( models.Model ): |
|
|
"""Represents a Murmur server instance. |
|
|
|
|
|
|
|
|
""" Represents a Murmur server instance. |
|
|
|
|
|
|
|
|
All configurable settings are represented by a field in this model. To change the |
|
|
All configurable settings are represented by a field in this model. To change the |
|
|
settings, just update the appropriate field and call the save() method. |
|
|
settings, just update the appropriate field and call the save() method. |
|
@ -316,7 +316,7 @@ class Mumble( models.Model ): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MumbleUser( models.Model ): |
|
|
class MumbleUser( models.Model ): |
|
|
"""Represents a User account in Murmur. |
|
|
|
|
|
|
|
|
""" Represents a User account in Murmur. |
|
|
|
|
|
|
|
|
To change an account, simply set the according field in this model and call the save() |
|
|
To change an account, simply set the according field in this model and call the save() |
|
|
method to update the account in Murmur and in Django's database. Note that, once saved |
|
|
method to update the account in Murmur and in Django's database. Note that, once saved |
|
|