Skip to content

Commit

Permalink
fix: expected output rest handler
Browse files Browse the repository at this point in the history
  • Loading branch information
soleksy-splunk committed Oct 7, 2024
1 parent 7702b77 commit 13c35b0
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,15 @@
required=False,
encrypted=False,
default=None,
validator=None
validator=validator.AllOf(
validator.String(
max_len=4096,
min_len=10,
),
validator.Pattern(
regex=r"""^[a-zA-Z]\w*$""",
)
)
),
field.RestField(
'client_id',
Expand Down

0 comments on commit 13c35b0

Please sign in to comment.