mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
* Refactor settings into importable base. User deployment should use 'from allianceauth.settings.base import *' in their project settings. * Restructure tests folder. Remove DOMAIN setting. Use localhost for services revoked emails. * Add missing python3.4 typing requirement typing is included python3.5+ * Remove legacy setup comments Remove legacy update script
6 lines
98 B
Python
6 lines
98 B
Python
from django.http import HttpResponse
|
|
|
|
|
|
def page(request):
|
|
return HttpResponse('Hello World!')
|