Skip to content

Commit

Permalink
fix: Fix nullable boolean inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
meltyshev committed Feb 8, 2024
1 parent c096444 commit ca6a1a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions server/api/controllers/board-memberships/create.js
Expand Up @@ -29,6 +29,7 @@ module.exports = {
},
canComment: {
type: 'boolean',
allowNull: true,
},
},

Expand Down
1 change: 1 addition & 0 deletions server/api/controllers/board-memberships/update.js
Expand Up @@ -17,6 +17,7 @@ module.exports = {
},
canComment: {
type: 'boolean',
allowNull: true,
},
},

Expand Down

0 comments on commit ca6a1a1

Please sign in to comment.