Skip to content

Commit cf7a805

Browse files
committed
make userId required
1 parent 7e3a6bf commit cf7a805

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

components/zep/actions/add-user/add-user.mjs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ export default {
99
type: "action",
1010
props: {
1111
zep,
12+
userId: {
13+
type: "string",
14+
label: "User ID",
15+
description: "The unique identifier of the new user",
16+
},
1217
email: {
1318
type: "string",
1419
label: "Email",
@@ -40,12 +45,6 @@ export default {
4045
],
4146
optional: true,
4247
},
43-
userId: {
44-
type: "string",
45-
label: "User ID",
46-
description: "The unique identifier of the new user",
47-
optional: true,
48-
},
4948
},
5049
async run({ $ }) {
5150
const response = await this.zep.createUser({

0 commit comments

Comments
 (0)