fix: fix admin cli update user --project-id retrieval

The project id was misspelled(`projectID`) in the admin cli `update-user` command when retrieving the flag value. Now it's fixed to correct `project-id` to match the flag name.
This commit is contained in:
niksis02
2026-03-13 16:23:17 +04:00
parent a1f9d86698
commit 2ef6cc3aab
+1 -1
View File
@@ -433,7 +433,7 @@ func updateUser(ctx *cli.Context) error {
ctx.String("secret"),
ctx.Int("user-id"),
ctx.Int("group-id"),
ctx.Int("projectID"),
ctx.Int("project-id"),
auth.Role(ctx.String("role"))
props := auth.MutableProps{}