Skip to content
Snippets Groups Projects
Verified Commit 30677c94 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Add helper function to generate random code

parent 2280ba68
No related branches found
No related tags found
1 merge request!450User invitations
......@@ -13,6 +13,7 @@ from django.db.models import Model, QuerySet
from django.http import HttpRequest
from django.shortcuts import get_object_or_404
from django.utils import timezone
from django.utils.crypto import get_random_string
from django.utils.functional import lazy
from django.utils.module_loading import import_string
......@@ -279,6 +280,11 @@ def queryset_rules_filter(
return queryset.filter(pk__in=wanted_objects)
def generate_random_code(length, packet_size) -> str:
"""Generate random code for e.g. invitations."""
return get_random_string(packet_size * length).lower()
def unread_notifications_badge(request: HttpRequest) -> int:
"""Generate badge content with the number of unread notifications."""
return request.user.person.unread_notifications_count
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment