WIP webauthn - backend

This commit is contained in:
Dusan Jakub
2023-09-20 17:26:57 +02:00
parent 8ce94899e7
commit b0637e8541
7 changed files with 201 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ public class AuthCodeGrantTest {
@BeforeEach
void beforeAll() {
clientsRepo.register(CLIENT);
usersRepo.register(new User("bob", "password"));
usersRepo.register(new User("bob", "password", List.of()));
}
@Test