mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-13 22:32:15 +00:00
6 lines
122 B
Python
6 lines
122 B
Python
from django.http import HttpResponse
|
|
|
|
|
|
def oauth_callback(request, other):
|
|
return HttpResponse('Fake callback view.')
|