1. 16 7月, 2019 1 次提交
  2. 15 7月, 2019 1 次提交
  3. 12 7月, 2019 7 次提交
  4. 11 7月, 2019 1 次提交
    • S
      Bring buttons style up to design spec · d97032ca
      Scott Hampton 提交于
      This is a CSS effort only.
      
      Fixes the padding of the buttons to be `8px 12px`
      (including border) so that the button height is
      32px.
      
      Also adjusts the border width for all buttons when
      the state is `hover`, `focus`, or `active to be 2px
      thick instead of 1px thick. This is accomplished
      through an inset box-shadow as not to increase
      the size of the button.
      
      Fixes some colors for primary and tertiary buttons.
      d97032ca
  5. 09 7月, 2019 2 次提交
    • N
      Implemented frontend suggestions · 476f0955
      Nick Kipling 提交于
      Converted storage details into a small partial
      Reworded the storage details summary as suggested
      Updated pot file
      476f0955
    • C
      Remove `:graphql` feature flag · 639ab521
      charlie ablett 提交于
      - Remove `FeatureConstrainer` call wrapping api endpoint
      - Remove `Feature.enabled?(:graphql)` conditionals in back and frontend
      - Modify graphql test to be graphql flag agnostic
      - Remove api routing spec
      - Remove frontend feature flag via `gon`
      639ab521
  6. 07 7月, 2019 2 次提交
  7. 05 7月, 2019 1 次提交
  8. 04 7月, 2019 2 次提交
    • C
      Change 'Todo' to 'To Do' · c433082f
      Christie Lenneville 提交于
      Currently, we label items to be done as "Todo." This is grammatically
      incorrect and (therefore) confusing—especially to our Spanish-speaking
      users for whom "todo" has a specific and unrelated meaning.
      
      We should use "To Do" and always use it as singular (not "To Dos").
      
      Updates to wording in a few places per MR (ee) discussion
      
      Updating locale/gitlab.pot
      
      Updates to wording in a few places per MR (ee) discussion
      
      Updating locale/gitlab.pot
      c433082f
    • M
      def94f50
  9. 03 7月, 2019 2 次提交
  10. 02 7月, 2019 1 次提交
  11. 28 6月, 2019 1 次提交
  12. 27 6月, 2019 1 次提交
    • T
      Remove group_clusters feature flag · 3f759e16
      Thong Kuah 提交于
      Now we have terminals for instance and group clusters we can remove the
      FF now. Deploying to group clusters has been working without complaints
      too.
      3f759e16
  13. 26 6月, 2019 4 次提交
  14. 25 6月, 2019 3 次提交
  15. 24 6月, 2019 3 次提交
  16. 21 6月, 2019 1 次提交
    • S
      Omit issues links in merge request entity API response · 1b7ab11f
      Stan Hu 提交于
      The merge request widget has a section that includes which issues may be
      closed or mentioned based on the merge request description. The problem
      is that rendering and redacting Markdown can be expensive, especially
      since the browser polls for the data every 10 seconds.
      
      Since these links don't change much and are just nice to have, we only
      load them on first page load. The frontend will use the existing data if
      the data doesn't appear on subsequent requests.
      
      This saves about 30% of the rendering time of this endpoint, which adds
      up to significant savings considering that
      `MergeRequestsController#show.json` is called over a million times a day
      on GitLab.com.
      
      Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/63546
      1b7ab11f
  17. 20 6月, 2019 1 次提交
    • B
      Render GFM html in GraphQL · 40680858
      Bob Van Landuyt 提交于
      This adds a `markdown_field` to our types.
      
      Using this helper will render a model's markdown field using the
      existing `MarkupHelper` with the context of the GraphQL query
      available to the helper.
      
      Having the context available to the helper is needed for redacting
      links to resources that the current user is not allowed to see.
      
      Because rendering the HTML can cause queries, the complexity of a
      these fields is raised by 5 above the default.
      
      The markdown field helper can be used as follows:
      
            ```
            markdown_field :note_html, null: false
            ```
      
      This would generate a field that will render the markdown field `note`
      of the model. This could be overridden by adding the `method:`
      argument. Passing a symbol for the method name:
      
            ```
            markdown_field :body_html, null: false, method: :note
            ```
      
      It will have this description by default:
      
      > The GitLab Flavored Markdown rendering of `note`
      
      This could be overridden by passing a `description:` argument.
      
      The type of a `markdown_field` is always `GraphQL::STRING_TYPE`.
      40680858
  18. 18 6月, 2019 2 次提交
    • A
      Expose merge requests count based on user access · 09163e42
      Alexandru Croitor 提交于
      Count issues related merge requests based on user access level. And
      issue can have related MRs from projects where user does not have
      access so the number of related merge requests should be adjusted
      based on user's ability to access the related MRs.
      
      https://gitlab.com/gitlab-org/gitlab-ce/issues/59581
      09163e42
    • J
      Make KubernetesService readonly · 6b9157d5
      James Fargher 提交于
      We are deprecating this service in favor of instance wide clusters.
      Therefore we removed some code that is not anymore needed for a
      readonly cluster and also we added some flags to allow for this
      deprecation. These flags are to be removed in the next release when
      we finally completelly remove KubernetesService.
      6b9157d5
  19. 17 6月, 2019 1 次提交
    • O
      Persist tmp snippet uploads · 44e1915d
      Oswaldo Ferreira 提交于
      It persist temporary personal snippets under
      user/:id namespaces temporarily while creating
      a upload record to track it. If an user gets removed
      while it's still a tmp upload, it also gets removed.
      If the tmp upload is sent, the upload gets moved to
      personal_snippets/:id as before. The upload record
      also gets updated to the new model type as well.
      44e1915d
  20. 14 6月, 2019 3 次提交