refactor pilots
This commit is contained in:
parent
a4e6e42d34
commit
27c56a9204
|
@ -193,10 +193,15 @@ class OAuth2VPToken(models.Model):
|
||||||
return response
|
return response
|
||||||
|
|
||||||
response["verify"] = "Ok, Verification correct"
|
response["verify"] = "Ok, Verification correct"
|
||||||
response["redirect_uri"] = self.get_redirect_url()
|
url = self.get_redirect_url()
|
||||||
|
if url:
|
||||||
|
response["redirect_uri"] = url
|
||||||
return response
|
return response
|
||||||
|
|
||||||
def get_redirect_url(self):
|
def get_redirect_url(self):
|
||||||
|
if not settings.ALLOW_CODE_URI:
|
||||||
|
return
|
||||||
|
|
||||||
data = {
|
data = {
|
||||||
"code": self.authorization.code,
|
"code": self.authorization.code,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue