implement jinja nkode_authentication_template.md

This commit is contained in:
2024-08-06 17:56:35 -05:00
parent c8c80e2b37
commit d33767b545
6 changed files with 788 additions and 161 deletions

View File

@@ -95,6 +95,6 @@ class NKodeAPI(BaseModel):
customer = self.customers[customer_id]
return customer.valid_key_entry(username, key_selection)
def renew_keys(self, customer_id: UUID) -> bool:
def renew_attributes(self, customer_id: UUID) -> bool:
assert (customer_id in self.customers.keys())
return self.customers[customer_id].renew_keys()