Skip to content

Commit

Permalink
fix(api): create_user function signature in noauth (#2009)
Browse files Browse the repository at this point in the history
  • Loading branch information
talboren authored Sep 26, 2024
1 parent fb72f73 commit 788c388
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, tenant_id, context_manager: ContextManager, **kwargs):
def get_users(self) -> list[User]:
return []

def create_user(self, secret_name: str, secret_value: str) -> None:
def create_user(self, user_email, user_name, password, role, groups=[]) -> None:
return

def delete_user(self, user_email: str) -> dict:
Expand Down

0 comments on commit 788c388

Please sign in to comment.