We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb31c3 commit 0d0ecddCopy full SHA for 0d0ecdd
src/services/GroupService.js
@@ -155,7 +155,7 @@ searchGroups.schema = {
155
perPage: Joi.perPage(),
156
oldId: Joi.string(),
157
ssoId: Joi.string(),
158
- organizationId: Joi.id(),
+ organizationId: Joi.optionalId(),
159
selfRegister: Joi.boolean(),
160
privateGroup: Joi.boolean(),
161
includeSubGroups: Joi.boolean().default(false),
@@ -229,7 +229,7 @@ createGroup.schema = {
229
selfRegister: Joi.boolean().required(),
230
domain: Joi.string(),
231
232
233
status: Joi.string()
234
.valid([constants.GroupStatus.Active, constants.GroupStatus.InActive])
235
.default(constants.GroupStatus.Active)
0 commit comments