* Injects a credential into the authenticator. * @param credential Credential to be added
(credential)
| 1636 | * @param credential Credential to be added |
| 1637 | */ |
| 1638 | async addCredential(credential) { |
| 1639 | credential = credential.toDict() |
| 1640 | credential['authenticatorId'] = this.authenticatorId_ |
| 1641 | await this.execute(new command.Command(command.Name.ADD_CREDENTIAL).setParameters(credential)) |
| 1642 | } |
| 1643 | |
| 1644 | /** |
| 1645 | * |
nothing calls this directly
no test coverage detected