BigW Consortium Gitlab

  1. 17 Jan, 2018 1 commit
    • Initial work to add notification reason to emails · 23a20c20
      Mario de la Ossa authored
      Adds `#build_notification_recipients` to `NotificationRecipientService`
      that returns the `NotificationRecipient` objects in order to be able to
      access the new attribute `reason`.
      
      This new attribute is used in the different notifier methods in order to
      add the reason as a header: `X-GitLab-NotificationReason`.
      
      Only the reason with the most priority gets sent.
  2. 22 Dec, 2017 1 commit
  3. 13 Dec, 2017 1 commit
    • Make discussion mail References all notes in the discussion · f55aaca5
      Toon Claes authored
      When a note is part of a discussion, the email sent out will be
      `In-Reply-To` the previous note in that discussion. It also
      `References` all the previous notes in that discussion, and the
      original issue.
      
      Closes gitlab-org/gitlab-ce#36054.
  4. 01 Dec, 2017 1 commit
  5. 13 Nov, 2017 1 commit
  6. 09 Oct, 2017 1 commit
  7. 23 Sep, 2017 1 commit
  8. 01 Sep, 2017 2 commits
  9. 10 Aug, 2017 1 commit
  10. 02 Aug, 2017 1 commit
  11. 27 Jul, 2017 1 commit
  12. 05 Jul, 2017 1 commit
  13. 21 Jun, 2017 1 commit
  14. 14 Jun, 2017 1 commit
  15. 25 May, 2017 1 commit
  16. 04 May, 2017 1 commit
  17. 01 May, 2017 1 commit
  18. 26 Apr, 2017 1 commit
  19. 06 Apr, 2017 1 commit
  20. 05 Apr, 2017 5 commits
  21. 03 Apr, 2017 1 commit
  22. 27 Mar, 2017 1 commit
  23. 21 Mar, 2017 2 commits
  24. 17 Mar, 2017 2 commits
  25. 14 Mar, 2017 1 commit
  26. 23 Feb, 2017 2 commits
  27. 28 Nov, 2016 3 commits
  28. 25 Nov, 2016 3 commits
    • Clean up rubocop complaint · c0931722
      hhoopes authored
    • Add keyword arguments to truncated_diff method · a761c59a
      hhoopes authored
      * Added keyword arguments to truncated_diff_lines method to allow for using highlighting or not (html templates vs. text)
      * Tweaked templates for consistency and format appropriateness
    • Change diff highlight/truncate for reusability · f928dba9
      hhoopes authored
      Previously the `truncated_diff_lines` method for outputting a discussion diff took in already highlighted lines, which meant it wasn't reuseable for truncating ANY lines. In the way it was used, it also meant that for any email truncation, the whole diff was being highlighted before being truncated, meaning wasted time highlighting lines that wouldn't even be used (granted, they were being memoized, so perhaps this wasn't that great of an issue). I refactored truncation away from highlighting, in order to truncate formatted diffs for text templates in email, using `>`s to designate each line, but otherwise retaining the parsing already done to create `diff_lines`.
      
      Additionally, while notes on merge requests or commits had already been tested, there was no existing test for notes on a diff on an MR or commit. Added mailer tests for such, and a unit test for truncating diff lines.