BigW Consortium Gitlab

  1. 07 Oct, 2017 1 commit
    • Replaces `tag: true` into `:tag` in the specs · 0ce67858
      Jacopo authored
      Replaces all the explicit include metadata syntax in the specs (tag:
      true) into the implicit one (:tag).
      Added a cop to prevent future errors and handle autocorrection.
  2. 11 Aug, 2017 1 commit
  3. 07 Aug, 2017 1 commit
  4. 27 Jul, 2017 2 commits
  5. 22 Jul, 2017 1 commit
  6. 21 Jul, 2017 1 commit
  7. 20 Jul, 2017 1 commit
  8. 06 Jul, 2017 1 commit
  9. 05 Jul, 2017 1 commit
  10. 29 Jun, 2017 1 commit
  11. 28 Jun, 2017 1 commit
  12. 19 Jun, 2017 2 commits
  13. 15 Jun, 2017 1 commit
  14. 22 May, 2017 1 commit
  15. 05 May, 2017 1 commit
  16. 21 Apr, 2017 1 commit
  17. 17 Mar, 2017 1 commit
  18. 03 Feb, 2017 2 commits
  19. 31 Jan, 2017 1 commit
    • refactor merge request build service · 14326c88
      Rydkin Maxim authored
      add changelog entry
      
      replace local variables `merge_request` with instance ones
      
      modify `MergeRequests::BuildService` to fix failed tests
      
      extract `assign_target_project` method
      
      remove unnecessary instance variables
      
      remove exclamation marks and rewrite conditionals to improve readability
      
      extract `params_does_not_contain_branches?` method, rename `unprepared_merge_request` method to `uncreatable_merge_request`
      
      replace instance variables `merge_request` and `error_messages` with getters and setters; divide `set_title_and_description` method on two separate ones
      
      refactor `execute` method
      
      return `set_title_and_description` method
      
      rename `branches_selected?` method to `branches_present?` to make it more different from `branches_specified?`
      
      fixes after discussion
      
      renamed method branches_valid?
      
      fix space
      
      return assigning methods into `execute` method
      
      simplify `find_target_branch` and `find_source_project` methods
      
      fix spec `merge request issuable record that supports slash commands in its description and notes`
  20. 13 Jan, 2017 1 commit
  21. 11 Jan, 2017 1 commit
  22. 26 Dec, 2016 1 commit
  23. 15 Oct, 2016 1 commit
  24. 03 Oct, 2016 1 commit
  25. 08 Sep, 2016 1 commit
  26. 18 Aug, 2016 1 commit
  27. 12 Aug, 2016 2 commits
    • New Notes::SlashCommandsService service · 7cc4ab14
      Rémy Coutable authored
      Check for update_issuable permission in Notes::SlashCommandsService
      Signed-off-by: 's avatarRémy Coutable <remy@rymai.me>
    • Support slash commands in noteable description and notes · 0eea8c88
      Rémy Coutable authored
      Some important things to note:
      
      - commands are removed from noteable.description / note.note
      - commands are translated to params so that they are treated as normal
        params in noteable Creation services
      - the logic is not in the models but in the Creation services, which is
        the right place for advanced logic that has nothing to do with what
        models should be responsible of!
      - UI/JS needs to be updated to handle notes which consist of commands
        only
      - the `/merge` command is not handled yet
      
      Other improvements:
      
      - Don't process commands in commit notes and display a flash is note is only commands
      - Add autocomplete for slash commands
      - Add description and params to slash command DSL methods
      - Ensure replying by email with a commands-only note works
      - Use :subscription_event instead of calling noteable.subscribe
      - Support :todo_event in IssuableBaseService
      Signed-off-by: 's avatarRémy Coutable <remy@rymai.me>