Free and open source ticket system written in python
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'aottr:main' into main

authored by

A.Ottr and committed by
GitHub
1d123e81 5edd527a

+3
+3
core/utils/general.py
··· 1 + def sainitize_username(username: str) -> str: 2 + """Remove illegal characters from a username""" 3 + return re.sub(r'[^a-zA-Z0-9-_@]', "", username)