Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-07-12Removes the warning style from the paragraphMatej Latin
In U2F device message, removes warning style
2018-11-20Externalize strings from `/app/views/u2f`George Tsiolis
2018-09-17Fix grammar (setup to set-up) in code comments, spec, views, etc.Marcel Amirault
2018-06-25Resolve "2FA should not attempt to use U2F in unsupported browsers"Jan Beckmann
2018-03-01Ignore InlineJavaScript linter in existing script tag locations.Connor Shea
2017-09-08Tweak column widths on two factor warning messagesJedidiah
2017-08-01Inline script cleanup globals and easyTim Zallmann
2017-04-06Fixed rspec testsJose Ivan Vargas
2017-04-06Corrected capitalizacion on various sectionsJose Ivan Vargas
2016-12-31HAMLLint: Fix `ImplicitDiv` offencesKushal Pandya
2016-12-27Improved the u2f flowLuke "Jared" Bennett
Added tests
2016-11-07Display error code for U2F errors (!7305)winniehell
2016-10-15Make UX upgrades to SignIn/Register views.Bryce Johnson
- Tab between register and sign in forms - Add individual input validation error messages - Validate username - Update many styles for all login-box forms
2016-09-02Pass the remember_me option into the u2f form and support it while ↵DJ Mountney
authenticating Matches the changes done for non-u2f two-factor auth
2016-08-18Address review comments from @smcgivern.Timothy Andrew
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.
2016-08-18Allow naming U2F devices.Timothy Andrew
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).
2016-06-15Don't allow clicking on "Setup New U2F Device" unless an authenticator app ↵Timothy Andrew
has been set up. - Also change the help message to indicate that an authenticator app is now a prerequisite for U2F.
2016-06-06Implement authentication (login) using a U2F device.Timothy Andrew
- Move the `authenticate_with_two_factor` method from `ApplicationController` to the `AuthenticatesWithTwoFactor` module, where it should be.
2016-06-06Implement U2F registration.Timothy Andrew
- 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