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-02-22No more and/orDouwe Maan
2017-02-20Added support for Authentiq Back-Channel LogoutAlexandros Keramidas
2016-07-04Added tests for 2FA check on OAuth requestPatricio Cano
2016-06-29Add 2FA check to the OAuth authentication mechanismPatricio Cano
2016-05-30Enable Style/MethodDefParentheses rubocop copGrzegorz Bizon
Use def with parentheses when there are parameters. See #17478
2016-04-08Add missing proper nil and error handling to SAML login process.Patricio Cano
2016-04-05Avoid saving again if the user attributes haven't changedPatricio Cano
2016-02-19Decouple SAML authentication from the default Omniauth logicPatricio Cano
2016-02-19Revert "Merge branch 'saml-decoupling' into 'master' "Douwe Maan
This reverts commit c04e22fba8d130a58f498ff48127712d7dae17ee, reversing changes made to 0feab326d52222dc0ab5bd0a6b15dab297f44aa9.
2016-02-18Decouple SAML authentication from the default Omniauth logicPatricio Cano
2016-02-03Support Two-factor Authentication for LDAP usersRobert Speicher
Closes #12653
2016-01-28Backport LDAP user assignment changes from EERobert Speicher
See https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/146
2015-12-15add CAS authentication supporttduehr
2015-10-03Fix rubocop warnings in appGuilherme Garnier
2015-07-23Allow custom label to be set for authentication providers.Douwe Maan
2015-07-06Audit log for user authenticationValery Sizov
2015-06-05Add "Remember me" checkbox to LDAP signin form.Douwe Maan
2015-05-27Add SAML support via OmniauthAlex Lossent
2015-05-13Improve OAuth signup error message.Douwe Maan
2015-02-08When add new social account - redirect to accounts page and show notice messageDmitriy Zaporozhets
2015-01-12ForbiddenAction constant fixValery Sizov
2014-12-04Supporting for multiple omniauth provider for the same userValery Sizov
2014-12-04Multi-provider auth. LDAP is not reworkedValery Sizov
2014-10-17Refactor error message a bitDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-10-16Add regressiontest to verify allow_single_sign_on settingJan-Willem van der Meer
verification for #1677 Since testing omniauth_callback_controller.rb is very difficult, the logic is moved to the models
2014-10-16Disallow new users from Oauth signup if `allow_single_sign_on` is disabledJan-Willem van der Meer
Because devise will trigger a save, allowing unsaved users to login, behaviour had changed. The current implementation returns a pre-build user, which can be saved without errors. Reported in #1677
2014-10-14Move dynamic omniauth declarations to initializerJan-Willem van der Meer
2014-10-13Add refactoring for multiple LDAP server supportJan-Willem van der Meer
These changes are ported from EE to CE. Apply changes for app directory
2014-08-06Move LDAP timeout code to Gitlab::LDAP::AccessJacob Vosmaer
2014-06-24Use an error page when oauth fails.Marin Jankovski
2014-06-24Return better error when account exists when attempting oauth account create.Marin Jankovski
2014-06-13Check LDAP user filter during sign-inJacob Vosmaer
2013-09-04Use new OAuth classesDmitriy Zaporozhets
2013-09-03Mode User+LDAP functionality from Gitlab::AuthDmitriy Zaporozhets
2012-12-20Update uses of Gitolite.config.foo settingsRiyad Preukschas
2012-09-12Cleanup after omniauthDmitriy Zaporozhets
2012-08-31save newly created users directly in the modelFlorian Unglaub
2012-08-31Allow single-sign-on with OmniauthFlorian Unglaub
2012-08-24Merge issue fixedFlorian Unglaub
2012-08-24Merge branch 'master' of git://github.com/gitlabhq/gitlabhqFlorian Unglaub
2012-08-21Merge branch 'better_ldap' of https://github.com/jirutka/gitlabhq into ↵randx
jirutka-better_ldap Conflicts: app/models/user.rb
2012-08-17Omniauth SupportFlorian Unglaub
2012-07-29Change identification of users with extern auth provider (LDAP)Jakub Jirutka
2012-07-21Handle LDAP missing credentials error with a flash message.Pat Thoyts
If a user fails to provide a username or password to the LDAP login form then a 500 error is returned due to an exception being raised in omniauth-ldap. This gem has been amended to use the omniauth error propagation function (fail!) to pass this exception message to the registered omniauth failure handler so that the Rails application can handle it approriately. The failure function now knows about standard exceptions and no longer requires a specific check for the OmniAuth::Error exception added by commit f322975. This resolves issue #1077. Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2012-07-17Improve handling of misconfigured LDAP accounts.Pat Thoyts
Gitlab requires an email address for all user accounts as this is the default account id and is used for sending notifications. LDAP accounts may be missing email fields so handle this by showing a sensible error message before redirecting to the login screen again. Resolves github issue #899 Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2012-02-17Use the omniauth-ldap info object instead of the raw ldap info in extra.Steve Prentice
This helps with compatibility with more LDAP providers as the implementation doesn't depend on the exact names of the LDAP fields. The LDAP strategy helps maps the attributes to the fields in the info object and we use the info object to get the email and name. This makes the LDAP auth compatible with most OpenLDAP servers as well.
2012-01-28LDAP donevsizov