mirror of
https://github.com/pretix/pretix.git
synced 2026-05-22 18:04:16 +00:00
10 lines
204 B
Python
10 lines
204 B
Python
from django.http import HttpResponse
|
|
|
|
from ..models import User
|
|
|
|
|
|
def healthcheck(request):
|
|
# Perform a simple DB query to see that DB access works
|
|
User.objects.exists()
|
|
return HttpResponse()
|