Files
infomate.club/auth/context_processors.py
2020-01-05 20:04:54 +01:00

8 lines
118 B
Python

from auth.helpers import authorized_user
def me(request):
return {
"me": authorized_user(request)
}