Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
30677c94
Verified
Commit
30677c94
authored
3 years ago
by
Tom Teichler
Browse files
Options
Downloads
Patches
Plain Diff
Add helper function to generate random code
parent
2280ba68
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!450
User invitations
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/core/util/core_helpers.py
+6
-0
6 additions, 0 deletions
aleksis/core/util/core_helpers.py
with
6 additions
and
0 deletions
aleksis/core/util/core_helpers.py
+
6
−
0
View file @
30677c94
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment