Issues (TODO) moved to issuetracker

This commit is contained in:
Dirk Alders 2024-10-08 14:49:42 +02:00
parent 57852e6ec8
commit 6b55e81816
3 changed files with 1 additions and 7 deletions

View File

@ -34,4 +34,4 @@ This parameter can be ```True``` or ```False```. It enables or disables the self
## Usage
### Actionabr
You might want to add the user actions by calling ```users.context.menubar(bar, request)``` with ```bar``` as actionbar. See theme dosumentation for more details.
You might want to add the user actions by calling ```users.context.menubar(bar, request)``` with ```bar``` as menubar. See theme dosumentation for more details.

View File

@ -2,14 +2,11 @@ import config
from django.conf import settings
USERS_SELF_REGISTRATION = "USERS_SELF_REGISTRATION"
# TODO: Implement or find the mail validation and the methods to ask for the user status
# USERS_MAIL_VALIDATION = "USERS_MAIL_VALIDATION"
# TODO: Implement or mail information (Admins: New Useraccounts, Failed logins; User: Password Change, ...)
# USERS_MAIL_INFORMATION = "USERS_MAIL_INFORMATION"
DEFAULTS = {
# TODO: Implement the parameer functionality USERS_SELF_REGISTRATION
USERS_SELF_REGISTRATION: False,
# USERS_MAIL_VALIDATION: True,
# USERS_MAIL_INFORMATION: True,

View File

@ -15,8 +15,6 @@ from themes import Context
import users
from users import parameter
# TODO: Implement password change.
try:
from config import APP_NAME as ROOT_LOGGER_NAME
except ImportError:
@ -25,7 +23,6 @@ logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__)
def password_recovery(request):
# TODO: Implement password recovery
messages.error(request, "Password recovery is not yet implemented!")
return redirect(request.GET.get('next') or '/')