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
2018-06-22Show a reCAPTCHA on signin page if custom header is setStan Hu
This will only be displayed if `X-GitLab-Show-Login-Captcha` is set as an HTTP header.
2018-06-21Fix multiple active tabs when Crowd or LDAP is in useStan Hu
2018-06-08Users can accept terms during registrationBob Van Landuyt
When a user checks the `accept` checkbox, we will track that acceptance as usual. That way they don't need to accept again after they complete the registration. When an unauthenticated user visits the `/-/users/terms` page, there is no button to accept, decline or continue. The 'current-user menu' is also hidden from the top bar.
2018-05-25Fix login tabsAnnabel Dunstone Gray
2018-05-08Merge branch 'master' into bootstrap4Clement Ho
2018-04-27Replace time_ago_in_words with JS-based oneTakuya Noguchi
2018-04-25Revert .hide to .d-none conversionClement Ho
2018-04-19Fix tabs on sign in pageClement Ho
2018-04-16Fix alignment on login pageClement Ho
2018-04-12Merge branch 'master' into bootstrap4Clement Ho
2018-04-11[skip ci] .help-block to .form-text.text-mutedClement Ho
2018-04-11[skip ci] Convert .checkbox to .form-checkClement Ho
2018-04-11Refactor CSS to eliminate vertical misalignment of login navTakuya Noguchi
2018-04-09[skip ci] Rename .hide to .d-noneClement Ho
2018-04-09[skip ci] Replace .pull-right with .float-rightClement Ho
2018-03-01Remove u2f webpack bundleMike Greiling
2018-02-19Chart.html.haml refactorJacob Schatz
2018-02-02use Gitlab::UserSettings directly as a singleton instead of ↵Mario de la Ossa
including/extending it
2018-01-18Fix Shows signin tab after new user email confirmationJacopo
When a new user confirm his email the signin tab is correctly shown.
2017-12-05remove ambiguity about which resource type to be using for new sessionsBrett Walker
2017-11-23Allow password authentication to be disabled entirelyMarkus Koller
2017-10-05Merge branch 'master' into ↵Douwe Maan
digitalmoksha/gitlab-ce-feature/verify_secondary_emails # Conflicts: # app/controllers/admin/users_controller.rb # app/controllers/confirmations_controller.rb # app/controllers/profiles/emails_controller.rb # app/models/user.rb # app/services/emails/base_service.rb # app/services/emails/destroy_service.rb # app/views/devise/mailer/confirmation_instructions.html.haml # lib/api/users.rb # spec/services/emails/destroy_service_spec.rb
2017-09-28Changed account confirmation line to e-mail text. This MR fixes issue #13637bitsapien
added changelog
2017-09-24fix whitespaceBrett Walker
2017-09-23small cleanup changes based on feedbackBrett Walker
2017-09-23move #cta properly under #contentBrett Walker
2017-09-23refactored the account confirmation into a partial. Also made theBrett Walker
text in the `.text` version consistent with the `.html` version
2017-09-23Send a confirmation email when the user adds a secondary email address. ↵Brett Walker
Utilizes the Devise `confirmable` capabilities. Issue #37385
2017-09-14Add missing classes to omniauth remember-me checkbox and add correct font-sizeJedidiah
2017-07-20add padding above Remember Me for social loginSimon Knox
also fix case
2017-07-13Fixes needed when GitLab sign-in is not enabledRobin Bobbitt
When sign-in is disabled: - skip password expiration checks - prevent password reset requests - don’t show Password tab in User Settings - don’t allow login with username/password for Git over HTTP requests - render 404 on requests to Profiles::PasswordsController
2017-07-06Merge branch '18000-remember-me-for-oauth-login' into 'master'Douwe Maan
Fix `migration:path` build for "Honor the 'Remember me' parameter for OAuth-based login" Closes #34713 See merge request !12668
2017-07-06Implement review comments for !11963 from @adamniedzielski.Timothy Andrew
- Change double quotes to single quotes. - Why is `OmniAuth.config.full_host` being reassigned in the integration test? - Use `map` over `map!` to avoid `dup` in the `gitlab:info` rake task - Other minor changes
2017-07-06Move OAuth "remember me" javascript logic into a class.Timothy Andrew
2017-07-06Add integration tests around OAuth login.Timothy Andrew
- There was previously a test for `saml` login in `login_spec`, but this didn't seem to be passing. A lot of things didn't seem right here, and I suspect that this test hasn't been running. I'll investigate this further. - It took almost a whole working day to figure out this line: OmniAuth.config.full_host = ->(request) { request['REQUEST_URI'].sub(request['REQUEST_PATH'], '') } As always, it's obvious in retrospect, but it took some digging to figure out tests were failing and returning 404s during the callback phase. - Test all OAuth providers - github, twitter, bitbucket, gitlab, google, and facebook
2017-07-06Implement "remember me" for OAuth-based login.Timothy Andrew
- Pass a `remember_me` query parameter along with the initial OAuth request, and pick this parameter up during the omniauth callback from request.env['omniauth.params']`. - For 2FA-based login, copy the `remember_me` param from `omniauth.params` to `params`, which the 2FA process will pick up. - For non-2FA-based login, simply call the `remember_me` devise method to set the session cookie.
2017-07-05Revert "Merge branch '18000-remember-me-for-oauth-login' into 'master'"Sean McGivern
This reverts merge request !11963
2017-07-05Merge branch '18000-remember-me-for-oauth-login' into 'master'Sean McGivern
Honor the "Remember me" parameter for OAuth-based login Closes #18000 See merge request !11963
2017-07-03Implement review comments for !11963 from @adamniedzielski.Timothy Andrew
- Change double quotes to single quotes. - Why is `OmniAuth.config.full_host` being reassigned in the integration test? - Use `map` over `map!` to avoid `dup` in the `gitlab:info` rake task - Other minor changes
2017-07-03Move OAuth "remember me" javascript logic into a class.Timothy Andrew
2017-07-03Add integration tests around OAuth login.Timothy Andrew
- There was previously a test for `saml` login in `login_spec`, but this didn't seem to be passing. A lot of things didn't seem right here, and I suspect that this test hasn't been running. I'll investigate this further. - It took almost a whole working day to figure out this line: OmniAuth.config.full_host = ->(request) { request['REQUEST_URI'].sub(request['REQUEST_PATH'], '') } As always, it's obvious in retrospect, but it took some digging to figure out tests were failing and returning 404s during the callback phase. - Test all OAuth providers - github, twitter, bitbucket, gitlab, google, and facebook
2017-07-03Implement "remember me" for OAuth-based login.Timothy Andrew
- Pass a `remember_me` query parameter along with the initial OAuth request, and pick this parameter up during the omniauth callback from request.env['omniauth.params']` - For 2FA-based login, copy the `remember_me` param from `omniauth.params` to `params`, which the 2FA process will pick up. - For non-2FA-based login, simply call the `remember_me` devise method to set the session cookie.
2017-07-03add margin between captcha and register buttonSimon Knox
2017-06-13use common devise layout and use heading styleAlexis Reigel
2017-06-13use common layout for devise mailerAlexis Reigel
2017-05-24Revert "Remove changes that are not absolutely necessary"Douwe Maan
This reverts commit b0498c176fa134761d899c9b369be12f1ca789c5
2017-05-16Resolve ""Username or email" label on login form does not point to its ↵Tim Zallmann
corresponding input field"
2017-03-23Corrected alignment for the remember-me checkbox in the login viewJose Ivan Vargas
2017-03-10Change label for name on sign up formtauriedavis
2017-03-07move u2f library to webpackMike Greiling