Skip to content

Commit

Permalink
username is not nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
odeimaiz committed Dec 10, 2024
1 parent 64a50d3 commit f20f9b8
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,22 +87,22 @@ qx.Class.define("osparc.data.model.User", {

username: {
check: "String",
nullable: true,
nullable: false,
init: null,
event: "changeUsername",
},

firstName: {
init: "",
nullable: true,
check: "String",
nullable: true,
init: "",
event: "changeFirstName"
},

lastName: {
init: "",
nullable: true,
check: "String",
nullable: true,
init: "",
event: "changeLastName"
},

Expand Down

0 comments on commit f20f9b8

Please sign in to comment.