BigW Consortium Gitlab

  1. 15 Oct, 2016 1 commit
  2. 02 Sep, 2016 1 commit
  3. 18 Aug, 2016 2 commits
    • Address review comments from @smcgivern. · dbedf3a6
      Timothy Andrew authored
      1. Remove an unnecessary (since we're fetching all the records anyway)
         `pluck` while fetching U2F registration records.
      
      2. Align "Your device was successfully set up!" section with the "U2F
         Devices" table below.
    • Allow naming U2F devices. · 16c44a5d
      Timothy Andrew authored
      1. Display a list of U2F devices on the `two_factor_auth` page.
      
      2. Allow deleting individual U2F devices.
      
      3. Allow setting a (optional) name for a device (during registration).
  4. 16 Jun, 2016 2 commits
  5. 15 Jun, 2016 1 commit
  6. 06 Jun, 2016 2 commits
    • Implement authentication (login) using a U2F device. · 86b07caa
      Timothy Andrew authored
      - Move the `authenticate_with_two_factor` method from
        `ApplicationController` to the `AuthenticatesWithTwoFactor` module,
        where it should be.
    • Implement U2F registration. · 128549f1
      Timothy Andrew authored
      - 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