mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-08 20:28:42 +02:00
6 lines
133 B
Python
6 lines
133 B
Python
def main(request, response):
|
|
if "full" in request.GET:
|
|
return request.url
|
|
else:
|
|
return request.request_path
|
|
|