Skip to content

Commit

Permalink
revert removing api param
Browse files Browse the repository at this point in the history
  • Loading branch information
yash-rajpal committed Feb 20, 2024
1 parent 33ae8f7 commit 3a3397b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/rest-typings/src/v1/users/UsersUpdateParamsPOST.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export type UsersUpdateParamsPOST = {
nickname?: string;
statusText?: string;
roles?: string[];
joinDefaultChannels?: boolean;
requirePasswordChange?: boolean;
setRandomPassword?: boolean;
sendWelcomeEmail?: boolean;
Expand Down Expand Up @@ -77,6 +78,10 @@ const UsersUpdateParamsPostSchema = {
},
nullable: true,
},
joinDefaultChannels: {
type: 'boolean',
nullable: true,
},
requirePasswordChange: {
type: 'boolean',
nullable: true,
Expand Down

0 comments on commit 3a3397b

Please sign in to comment.