Skip to content

Commit

Permalink
Merge pull request spaze#88 from ruudk/patch-1
Browse files Browse the repository at this point in the history
Add missing `int()` to `disallowedMethodCalls` type structure
  • Loading branch information
spaze authored Oct 26, 2021
2 parents 9ae657d + 576a5f2 commit c478acd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extension.neon
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ parametersSchema:
anyOf(
string(),
listOf(string()),
arrayOf(anyOf(int(), string(), bool()))
arrayOf(anyOf(int(), string(), bool())),
int()
)
)
)
Expand Down

0 comments on commit c478acd

Please sign in to comment.