Skip to content

Commit e86866b

Browse files
authored
fix(3440): API to add admins from another SCM context fails when request has more than 50 users (#3441)
1 parent 6473388 commit e86866b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/pipelines/batchUpdateAdmins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = () => ({
3636
joi.object({
3737
id: idSchema.required(),
3838
scmContext: scmContextSchema.required(),
39-
usernames: joi.array().items(usernameSchema).min(1).max(50).required()
39+
usernames: joi.array().items(usernameSchema).min(1).max(200).required()
4040
})
4141
)
4242
.min(1)

0 commit comments

Comments
 (0)