test and validate signup with dispersable keypad and login with non-dispersable keypad

This commit is contained in:
2024-07-24 14:17:56 -05:00
parent 50dc917a90
commit 772c93c8a8
11 changed files with 227 additions and 142 deletions

View File

@@ -12,6 +12,9 @@ class Customer(BaseModel):
attributes: CustomerAttributes
users: dict[str, User]
# TODO: validate policy and keypad size don't conflict
def add_new_user(self, user: User):
self.users[user.username] = user