Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't allow clicking on "Setup New U2F Device" unless an authenticator app ↵ | Timothy Andrew | 2016-06-15 | 1 | -5/+12 |
| | | | | | | | has been set up. - Also change the help message to indicate that an authenticator app is now a prerequisite for U2F. | ||||
* | Implement authentication (login) using a U2F device. | Timothy Andrew | 2016-06-06 | 1 | -0/+28 |
| | | | | | | - Move the `authenticate_with_two_factor` method from `ApplicationController` to the `AuthenticatesWithTwoFactor` module, where it should be. | ||||
* | Implement U2F registration. | Timothy Andrew | 2016-06-06 | 1 | -0/+31 |
- Move the `TwoFactorAuthsController`'s `new` action to `show`, since the page is not used to create a single "two factor auth" anymore. We can have a single 2FA authenticator app, along with any number of U2F devices, in any combination, so the page will be accessed after the first "two factor auth" is created. - Add the `u2f` javascript library, which provides an API to the browser's U2F implementation. - Add tests for the JS components |