Skip to content

Commit

Permalink
fix add user
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvaingaudan committed Aug 26, 2024
1 parent 462a969 commit 62337a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arlas/cli/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Services(Enum):
class Service:

def create_user(arlas: str, email: str):
return Service.__arlas__(arlas, "/users", post=json.dumps({"email": email}), service=Services.iam)
return Service.__arlas__(arlas, "users", post=json.dumps({"email": email}), service=Services.iam)

def delete_user(arlas: str, id: str):
return Service.__arlas__(arlas, "/".join(["users", id]), delete=True, service=Services.iam)
Expand Down

0 comments on commit 62337a5

Please sign in to comment.