registration setting

This commit is contained in:
InspectorCaracal 2022-12-17 14:06:18 -07:00
parent 0bde1a034b
commit 04e036978c
4 changed files with 39 additions and 23 deletions

View file

@ -172,6 +172,15 @@ class CmdUnconnectedCreate(COMMAND_DEFAULT_CLASS):
locks = "cmd:all()"
arg_regex = r"\s.*?|$"
def at_pre_cmd(self):
"""Verify that account creation is enabled."""
if not settings.REGISTER_ENABLED:
# truthy return cancels the command
self.msg("Registration is currently disabled.")
return True
return super().at_pre_cmd()
def func(self):
"""Do checks and create account"""

View file

@ -34,6 +34,8 @@ SERVER_HOSTNAME = "localhost"
# Lockdown mode will cut off the game from any external connections
# and only allow connections from localhost. Requires a cold reboot.
LOCKDOWN_MODE = False
# Enables new account registration
REGISTER_ENABLED = True
# Activate telnet service
TELNET_ENABLED = True
# A list of ports the Evennia telnet server listens on Can be one or many.

View file

@ -78,10 +78,12 @@ folder and edit it to add/remove links to the menu.
<li>
<a class="nav-link" href="{% url 'login' %}?next={{ request.path }}">Log In</a>
</li>
{% if register_enabled %}
<li>
<a class="nav-link" href="{% url 'register' %}">Register</a>
</li>
{% endif %}
{% endif %}
{% endblock %}
</ul>
</div>

View file

@ -27,6 +27,7 @@ Register
{% endif %}
{% if not user.is_authenticated %}
{% if register_enabled %}
<form method="post" action="?">
{% csrf_token %}
@ -46,7 +47,9 @@ Register
<input type="hidden" name="next" value="{{ next }}" />
</div>
</form>
{% else %}
<p>Registration is currently disabled.</p>
{% endif %}
{% endif %}
</div>
</div>