mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
6 lines
169 B
Python
6 lines
169 B
Python
def main(request, response):
|
|
token = request.GET.first("token")
|
|
if request.server.stash.take(token) is not None:
|
|
return "1"
|
|
else:
|
|
return "0"
|