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
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-06-07Sync email address from specified omniauth providerRobin Bobbitt
2017-05-01Auto-correct `RSpec/DescribedClass` violationsRobert Speicher
2017-04-26Ensures that OAuth/LDAP/SAML users don't need to be confirmedRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-04-25Fix OAuth, LDAP and SAML SSO when regular sign-ups are disabledDouwe Maan
2017-03-25Fix RSpec/DescribeSymbol cop violationsRobert Speicher
2017-02-23Merge branch 'enable-rspec-be_eql-cop' into 'master' Robert Speicher
Enable the RSpec/BeEql cop See merge request !9476
2017-02-23Revert "Enable Style/DotPosition"Douwe Maan
This reverts commit e00fb2bdc2090e9cabeb1eb35a2672a882cc96e9. # Conflicts: # .rubocop.yml # .rubocop_todo.yml # lib/gitlab/ci/config/entry/global.rb # lib/gitlab/ci/config/entry/jobs.rb # spec/lib/gitlab/ci/config/entry/factory_spec.rb # spec/lib/gitlab/ci/config/entry/global_spec.rb # spec/lib/gitlab/ci/config/entry/job_spec.rb # spec/lib/gitlab/ci/status/build/factory_spec.rb # spec/lib/gitlab/incoming_email_spec.rb
2017-02-23Revert "Prefer leading style for Style/DotPosition"Douwe Maan
This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b.
2017-02-23Enable Style/WordArrayDouwe Maan
2017-02-23Prefer leading style for Style/DotPositionDouwe Maan
2017-02-23Enable Style/DotPositionDouwe Maan
2017-02-23Enable the RSpec/BeEql copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-02-02Active tense test coverageValery Sizov
Ports changes from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/642 back into CE
2017-01-10Fix Rubocop offenses in LDAP related code and specGrzegorz Bizon
2017-01-09Merge branch 'feature/log-ldap-to-application-log' into 'master' Rémy Coutable
Log LDAP blocking/unblocking events to application log See merge request !8042
2017-01-06LDAP attributes needs default valuesDrew Blessing
2017-01-03Gitlab::LDAP::Person uses LDAP attributes configurationDrew Blessing
We allow users to configure LDAP attribute preferences. For example, email can be configured to use `mail`, `email` and `userPrincipalName`, falling through to the next until a value is found. Prior to this change, Gitlab::LDAP::Person did not honor this configuration. Now, the class will honor `name` and `mail` configuration. It does not handle `username`, or fallback to `first_name` + `last_name` in the absence of `name`.
2016-12-20fixup! Log messages when blocking/unblocking LDAP accountsMarkus Koller
2016-12-20Log messages when blocking/unblocking LDAP accountsMarkus Koller
2016-11-12Centralize LDAP config/filter logicDrew Blessing
Centralize all LDAP config logic in `GitLab::LDAP::Config`. Previously, some logic was in the Devise initializer and it was not honoring the `user_filter`. If a user outside the configured `user_filter` signed in, an account would be created but they would then be denied access. Now that logic is centralized, the filter is honored and users outside the filter are never created.
2016-11-09Introduce better credential and error checking to `rake gitlab:ldap:check`Drew Blessing
It was previously possible for invalid credential errors to go unnoticed in this task. Users would believe everything was configured correctly and then sign in would fail with 'invalid credentials'. This adds a specific bind check, plus catches errors connecting to the server. Also, specs :)
2016-09-28Log LDAP lookup errors and don't swallow unrelated exceptionsMarkus Koller
Signed-off-by: Roger Meier <r.meier@siemens.com>
2016-09-09Request only the LDAP attributes we needDrew Blessing
2016-08-09adds second batch of tests changed to active tensetiagonbotelho
2016-07-12Avoid `describe`-ing symbols in specsRobert Speicher
2016-07-01Enable Style/EmptyLines cop, remove redundant onesGrzegorz Bizon
2016-04-05Unblocks user when active_directory is disabled and it can be foundGabriel Mazetto
2016-01-19Allow LDAP users to change their email if it was not set by the LDAP serverDouwe Maan
2016-01-14fixed LDAP activation on login to use new ldap_blocked stateGabriel Mazetto
2016-01-08LDAP synchronization block/unblock new statesGabriel Mazetto
2015-12-22Fix identity and user retrieval when special characters are usedPatricio Cano
2015-12-09Tag lib specsDouwe Maan
2015-12-08Block LDAP user when they are no longer found in the LDAP serverDrew Blessing
2015-10-08Fix ldap email downcasing bugDrew Blessing
2015-09-23Fix LDAP attribute mappingDouwe Maan
2015-09-09Test overriding LDAP attributesDouwe Maan
2015-09-08Add attributes to LDAP::Config.Douwe Maan
2015-08-21Issue #993: Fixed login failure when extern_uid changesJoel Koglin
2015-06-22Change `to_not` calls to `not_to`Robert Speicher
Both work, but now we're consistent across the entire app.
2015-06-22Fix `raise_error` without an argument deprecation warningsRobert Speicher
2015-06-22Update mock and stub syntax for specsRobert Speicher
2015-06-14Change `foo.should` syntax to `expect(foo).to` in specsRobert Speicher
2015-06-14Change `foo.should_not` syntax to `expect(foo).not_to` in specsRobert Speicher
2015-05-12Don't accidentally unblock auto created users from Active Directory.Douwe Maan
2015-04-14Add config var to block auto-created LDAP users.Douwe Maan
2015-04-13Remove test for 'ldap' provider special caseJacob Vosmaer
2015-03-14Unblock user if they were unblocked in AD.Douwe Maan
2015-03-12Block user if he/she was blocked in Active DirectoryDmitriy Zaporozhets
2015-02-12Updated rspec to rspec 3.x syntaxJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>