forked from 00dani/lemoncurry
Remove the pointless verify_auth_code wrapper - it's easier to do the verification work in the view anyway
This commit is contained in:
parent
3d5b537369
commit
9add6be8e4
2 changed files with 1 additions and 5 deletions
|
@ -25,7 +25,3 @@ def gen_auth_code(req):
|
||||||
code['sco'] = ' '.join(req.POST.getlist('scope'))
|
code['sco'] = ' '.join(req.POST.getlist('scope'))
|
||||||
|
|
||||||
return encode(code)
|
return encode(code)
|
||||||
|
|
||||||
|
|
||||||
def verify_auth_code(c):
|
|
||||||
return decode(c)
|
|
||||||
|
|
|
@ -92,7 +92,7 @@ class IndieView(TemplateView):
|
||||||
def post(self, request):
|
def post(self, request):
|
||||||
post = request.POST.dict()
|
post = request.POST.dict()
|
||||||
try:
|
try:
|
||||||
code = tokens.verify_auth_code(post.get('code'))
|
code = tokens.decode(post.get('code'))
|
||||||
except Exception:
|
except Exception:
|
||||||
# if anything at all goes wrong when decoding the auth code, bail
|
# if anything at all goes wrong when decoding the auth code, bail
|
||||||
# out immediately.
|
# out immediately.
|
||||||
|
|
Loading…
Reference in a new issue