An error occurred fetching the project authors.
  1. 04 Aug, 2021 1 commit
  2. 02 Aug, 2021 1 commit
  3. 28 Jul, 2021 1 commit
  4. 27 Jul, 2021 4 commits
  5. 26 Jul, 2021 9 commits
  6. 23 Jul, 2021 7 commits
  7. 22 Jul, 2021 5 commits
  8. 21 Jul, 2021 9 commits
  9. 20 Jul, 2021 3 commits
    • Alexander Turinske's avatar
      Create policies vue app · 32174a42
      Alexander Turinske authored
      - move security policy project selector into vue
      - implement project selection mutation
      - add default height for project selector
      - refactor project selector logic out into a separate compponent
      - remove backend assign action
      - add tooltip for users without permission to
        change the project
      - abstract out data processing to a helper
      - clean up instance-procject-selector to be
        more readable
      - fix null project
      - return null from backend
      - add default prop for assignedPolicyProject
      - update text
      - update tests
      32174a42
    • Dan Jensen's avatar
      Fix missing amount in Contribution Analytics · a272c572
      Dan Jensen authored
      Previously Contribution Analytics did not display closed merge
      requests, so when closed merge requests existed the total would be
      larger than the sum of the columns. That was interpreted as a bug
      because it was unexplained.
      
      This adds a "Closed MRs" column to the Contribution Analytics table,
      so the sum of the columns always equals the total column.
      
      Changelog: changed
      EE: true
      a272c572
    • Andrew Fontaine's avatar
      Migrate New Environments Form to Vue · c155d2b1
      Andrew Fontaine authored
      To allow for richer frontend validations and to align better with the
      pajamas design system, I've migrated the new environments form to vue.
      
      I've decided to do a full migration rather than using
      `parseRailsFormFields` because I found out about it too late, although
      it would have likely been easier.
      
      The form migration is about as bare-bones as possible, no vuex or other
      state management, and I use the existing internal API for speed.
      
      Next is to port the Edit Environment form, which is happening separately
      as it might involve a little bit of vuex or other state management. As
      it is only 2 fields, I suspect it won't, but we will see.
      
      Changelog: changed
      c155d2b1