Change "DOP" with "OIDC" in settings.

This commit is contained in:
juanifioren 2015-02-26 16:14:36 -03:00
parent 9bcdc0e37a
commit 94ccfc54cf
5 changed files with 10 additions and 9 deletions

View file

@ -98,7 +98,7 @@ class AuthorizeEndpoint(object):
code.client = self.client
code.code = uuid.uuid4().hex
code.expires_at = timezone.now() + timedelta(
seconds=settings.get('DOP_CODE_EXPIRE'))
seconds=settings.get('OIDC_CODE_EXPIRE'))
code.scope = self.params.scope
code.save()