Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
bazarnov committed Nov 27, 2024
1 parent 8732f9a commit e274e84
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -739,22 +739,23 @@ definitions:
}
state:
type: object
additionalProperties: true
description: |-
The OAuth Specific object to provide the criteria of how the `state` query param should be constructed,
including length and complexity.
TODO: review and edit this property, once the state generation logic is finilized.
Examples:
{
"state": {
"min_length": 7,
"max_length": 128,
"min_special": 3,
"excluded": ["$", "\\", "."]
"min": 7,
"max": 128,
}
}
additionalProperties: true
properties:
min:
type: integer
max:
type: integer
client_id_key:
type: string
description: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -794,22 +794,23 @@ definitions:
}
state:
type: object
additionalProperties: true
description: |-
The OAuth Specific object to provide the criteria of how the `state` query param should be constructed,
including length and complexity.
TODO: review and edit this property, once the state generation logic is finilized.
Examples:
{
"state": {
"min_length": 7,
"max_length": 128,
"min_special": 3,
"excluded": ["$", "\\", "."]
"min": 7,
"max": 128,
}
}
additionalProperties: true
properties:
min:
type: integer
max:
type: integer
client_id_key:
type: string
description: |-
Expand Down

0 comments on commit e274e84

Please sign in to comment.