An error occurred fetching the project authors.
  1. 21 Mar, 2019 1 commit
  2. 02 Jan, 2019 1 commit
  3. 05 Nov, 2018 1 commit
    • Yorick Peterse's avatar
      Move EE prepend/include to the end of controllers · d12d9834
      Yorick Peterse authored
      This moves all instances of `prepend EE::Something` and `include
      EE::Something` in controllers and controller concerns to the last line
      of the corresponding file. This pushes EE specific code further down the
      files, reducing the likelihood of developers running into merge
      conflicts.
      d12d9834
  4. 30 Oct, 2018 2 commits
    • Mark Chao's avatar
      Make Highlight accept language param · 39ae9a59
      Mark Chao authored
      This replaces the repository param.
      This allows more flexiblity as sometimes we have highlight content
      not related to repository. Sometimes we know ahead of time the language
      of the content. Lastly language determination seems better fit as a
      logic in the Blob class.
      `repository` param is only used to determine the language, which seems
      to be the responsiblity of Blob.
      39ae9a59
    • Mark Chao's avatar
      Make Highlight accept language param · ca82a46a
      Mark Chao authored
      This replaces the repository param.
      This allows more flexiblity as sometimes we have highlight content
      not related to repository. Sometimes we know ahead of time the language
      of the content. Lastly language determination seems better fit as a
      logic in the Blob class.
      `repository` param is only used to determine the language, which seems
      to be the responsiblity of Blob.
      ca82a46a
  5. 04 Oct, 2018 2 commits
    • Tomasz Maczukin's avatar
      Simplify runner registration token resetting · 0a460523
      Tomasz Maczukin authored
      This icommit adds several changes related to the same topic
      - resetting a Runner registration token:
      
      1. On Project settings page it adds a button for resetting the
         registration token and it removes the Runner token field
         that was confusing all GitLab users.
      
      2. On Group settings page it adds the same button for resetting
         the registration token.
      
      3. On Admin Runners settings page it moves the button to the same
         place as in Project and Group settings and it changes slightly
         the page layout to make it more similar to Group and Project
         setting pages.
      
      4. It refactorizes a little the partial that prints runner
         registration description. Thanks to this Project, Group
         and Admin settings of the Runner are re-using the same
         code to generate the button.
      
      5. Updates the translations of changed text.
      0a460523
    • Tomasz Maczukin's avatar
      Simplify runner registration token resetting · 42af2295
      Tomasz Maczukin authored
      This icommit adds several changes related to the same topic
      - resetting a Runner registration token:
      
      1. On Project settings page it adds a button for resetting the
         registration token and it removes the Runner token field
         that was confusing all GitLab users.
      
      2. On Group settings page it adds the same button for resetting
         the registration token.
      
      3. On Admin Runners settings page it moves the button to the same
         place as in Project and Group settings and it changes slightly
         the page layout to make it more similar to Group and Project
         setting pages.
      
      4. It refactorizes a little the partial that prints runner
         registration description. Thanks to this Project, Group
         and Admin settings of the Runner are re-using the same
         code to generate the button.
      
      5. Updates the translations of changed text.
      42af2295
  6. 24 Sep, 2018 2 commits
  7. 20 Sep, 2018 2 commits
  8. 19 Sep, 2018 5 commits
  9. 18 Sep, 2018 1 commit
  10. 14 Sep, 2018 1 commit
  11. 10 Sep, 2018 1 commit
  12. 07 Sep, 2018 2 commits
  13. 06 Sep, 2018 1 commit
  14. 05 Sep, 2018 1 commit
  15. 25 Jun, 2018 1 commit
  16. 21 Jun, 2018 1 commit
  17. 23 May, 2018 2 commits
  18. 16 Apr, 2018 1 commit
  19. 13 Apr, 2018 4 commits
  20. 11 Apr, 2018 1 commit
    • blackst0ne's avatar
      [Rails5] Fix admin/application_settings_controller · ac1b5def
      blackst0ne authored
      The `RAILS5=1 rspec spec/controllers/admin/application_settings_controller_spec.rb`
      command throws the error:
      
      Failures:
      
        1) Admin::ApplicationSettingsController PUT #update falls back to defaults when settings are omitted
            Failure/Error: import_sources = params[:application_setting][:import_sources]
      
            NoMethodError:
              undefined method `[]' for nil:NilClass
            # ./app/controllers/admin/application_settings_controller.rb:62:in `application_setting_params'
      
      This commit fixes it.
      ac1b5def
  21. 08 Jan, 2018 2 commits
  22. 14 Nov, 2017 1 commit
  23. 06 Sep, 2017 1 commit
  24. 30 Aug, 2017 2 commits
    • Nick Thomas's avatar
      Rework the permissions model for SSH key restrictions · 68470602
      Nick Thomas authored
      `allowed_key_types` is removed and the `minimum_<type>_bits` fields are
      renamed to `<tech>_key_restriction`. A special sentinel value (`-1`) signifies
      that the key type is disabled.
      
      This also feeds through to the UI - checkboxes per key type are out, inline
      selection of "forbidden" and "allowed" (i.e., no restrictions) are in.
      
      As with the previous model, unknown key types are disallowed, even if the
      underlying ssh daemon happens to support them. The defaults have also been
      changed from the lowest known bit size to "no restriction". So if someone
      does happen to have a 768-bit RSA key, it will continue to work on upgrade, at
      least until the administrator restricts them.
      68470602
    • Nick Thomas's avatar
      Add settings for minimum key strength and allowed key type · b0f982fb
      Nick Thomas authored
      This is an amalgamation of:
      
      * Cory Hinshaw: Initial implementation !5552
      * Rémy Coutable: Updates !9350
      * Nick Thomas: Resolve conflicts and add ED25519 support !13712
      b0f982fb
  25. 28 Jul, 2017 1 commit