1. 07 4月, 2018 1 次提交
  2. 27 3月, 2018 1 次提交
  3. 28 2月, 2018 1 次提交
  4. 17 1月, 2018 1 次提交
  5. 23 11月, 2017 2 次提交
  6. 09 11月, 2017 1 次提交
  7. 02 11月, 2017 2 次提交
  8. 18 9月, 2017 1 次提交
  9. 01 9月, 2017 1 次提交
  10. 22 8月, 2017 1 次提交
  11. 03 8月, 2017 1 次提交
  12. 02 8月, 2017 1 次提交
  13. 27 7月, 2017 1 次提交
  14. 13 7月, 2017 1 次提交
    • R
      Fixes needed when GitLab sign-in is not enabled · 672a68d3
      Robin 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
      672a68d3
  15. 08 6月, 2017 1 次提交
  16. 06 6月, 2017 1 次提交
  17. 05 6月, 2017 1 次提交
    • Z
      Create read_registry scope with JWT auth · 0b81b5ac
      Z.J. van de Weg 提交于
      This is the first commit doing mainly 3 things:
      1. create a new scope and allow users to use it
      2. Have the JWTController respond correctly on this
      3. Updates documentation to suggest usage of PATs
      
      There is one gotcha, there will be no support for impersonation tokens, as this
      seems not needed.
      
      Fixes gitlab-org/gitlab-ce#19219
      0b81b5ac
  18. 11 5月, 2017 1 次提交
  19. 13 4月, 2017 1 次提交
  20. 07 3月, 2017 3 次提交
  21. 06 3月, 2017 3 次提交
  22. 01 3月, 2017 2 次提交
  23. 23 2月, 2017 4 次提交
  24. 31 1月, 2017 1 次提交
    • D
      Reduce hits to LDAP on Git HTTP auth by reordering auth mechanisms · 29414ab0
      Drew Blessing 提交于
      We accept half a dozen different authentication mechanisms for
      Git over HTTP. Fairly high in the list we were checking user
      password, which would also query LDAP. In the case of LFS,
      OAuth tokens or personal access tokens, we were unnecessarily
      hitting LDAP when the authentication will not succeed. This
      was causing some LDAP/AD systems to lock the account. Now,
      user password authentication is the last mechanism tried since
      it's the most expensive.
      29414ab0
  25. 16 12月, 2016 2 次提交
    • T
      View-related (and other minor) changes to !5951 based on @rymai's review. · f706a973
      Timothy Andrew 提交于
      - The `scopes_form` partial can be used in the `admin/applications` view
        as well
      
      - Don't allow partials to access instance variables directly. Instead, pass
        in the instance variables as local variables, and use `local_assigns.fetch`
        to assert that the variables are passed in as expected.
      
      - Change a few instances of `render :partial` to `render`
      
      - Remove an instance of `required: false` in a view, since this is the default
      
      - Inline many instances of a local variable (`ip = 'ip'`) in `auth_spec`
      f706a973
    • T
      Validate access token scopes in `Gitlab::Auth` · 36b3210b
      Timothy Andrew 提交于
      - This module is used for git-over-http, as well as JWT.
      
      - The only valid scope here is `api`, currently.
      36b3210b
  26. 29 9月, 2016 1 次提交
  27. 20 9月, 2016 1 次提交
  28. 19 9月, 2016 2 次提交