providers/oauth2: don't write authorization code to event log
This commit is contained in:
parent
dc16a8a4c9
commit
0e1587bc1a
|
@ -398,7 +398,7 @@ class AuthorizationCode(ExpiringModel, BaseGrantModel):
|
|||
verbose_name_plural = _("Authorization Codes")
|
||||
|
||||
def __str__(self):
|
||||
return "{0} - {1}".format(self.provider, self.code)
|
||||
return f"Authorization code for {self.provider} for user {self.user}"
|
||||
|
||||
|
||||
@dataclass
|
||||
|
@ -461,7 +461,7 @@ class RefreshToken(ExpiringModel, BaseGrantModel):
|
|||
self._id_token = json.dumps(asdict(value))
|
||||
|
||||
def __str__(self):
|
||||
return f"{self.provider} - {self.access_token}"
|
||||
return f"Refresh Token for {self.provider} for user {self.access_token.user}"
|
||||
|
||||
@property
|
||||
def at_hash(self):
|
||||
|
|
24
swagger.yaml
24
swagger.yaml
|
@ -8133,6 +8133,14 @@ definitions:
|
|||
type: string
|
||||
format: uuid
|
||||
x-nullable: true
|
||||
verbose_name:
|
||||
title: Verbose name
|
||||
type: string
|
||||
readOnly: true
|
||||
verbose_name_plural:
|
||||
title: Verbose name plural
|
||||
type: string
|
||||
readOnly: true
|
||||
__type__:
|
||||
title: 'type '
|
||||
type: string
|
||||
|
@ -8181,6 +8189,14 @@ definitions:
|
|||
type: string
|
||||
format: uuid
|
||||
x-nullable: true
|
||||
verbose_name:
|
||||
title: Verbose name
|
||||
type: string
|
||||
readOnly: true
|
||||
verbose_name_plural:
|
||||
title: Verbose name plural
|
||||
type: string
|
||||
readOnly: true
|
||||
server_uri:
|
||||
title: Server URI
|
||||
type: string
|
||||
|
@ -8296,6 +8312,14 @@ definitions:
|
|||
type: string
|
||||
format: uuid
|
||||
x-nullable: true
|
||||
verbose_name:
|
||||
title: Verbose name
|
||||
type: string
|
||||
readOnly: true
|
||||
verbose_name_plural:
|
||||
title: Verbose name plural
|
||||
type: string
|
||||
readOnly: true
|
||||
provider_type:
|
||||
title: Provider type
|
||||
type: string
|
||||
|
|
Reference in New Issue