summaryrefslogtreecommitdiff
path: root/spec/services/issues
Commit message (Collapse)AuthorAgeFilesLines
* Tag service specsDouwe Maan2015-12-094-4/+4
|
* test fixValery Sizov2015-11-302-2/+7
|
* Little fix for Rubocop's complaints. #2296issue_2296Rubén Dávila2015-11-201-2/+2
|
* Fix bug that happened when replacing the Task list. #2296Rubén Dávila2015-11-201-0/+19
| | | | REF: https://gitlab.com/gitlab-org/gitlab-ce/issues/2296#note_2724697
* Generate system note after Task item has been updated on Issue or Merge ↵Ruben Davila2015-11-191-6/+58
| | | | | | | | | | | | Request. #2296 Everytime the User check or uncheck a Task Item from the Issue or Merge Request description, a new update is going to be added to the activity logs of the Issue or Merge Request. Note that when using the edit form, you can only update the Task item status or add/delete/modify existing ones. Doing both actions is not fully supported.
* Add tests for merge request update.Douwe Maan2015-11-171-1/+1
|
* Fix specDouwe Maan2015-11-171-4/+6
|
* Add notification to the former assignee upon unassignmentadamliesko2015-11-091-4/+6
|
* Fix Style/Blocks cop violationsRobert Speicher2015-06-221-11/+9
|
* Fix post-receive errors on a push when an external issue tracker is configuredStan Hu2015-06-121-0/+10
| | | | | Closes #1700 Closes #1720
* Change one-character variable namers-title-change-noteRobert Speicher2015-05-271-2/+2
| | | | [ci skip]
* Add a note when an Issue or Merge Request's title changesRobert Speicher2015-05-261-4/+21
|
* Fix specs.unauthorized-participantsDouwe Maan2015-05-152-2/+2
|
* Send notifications and leave system comments when bulk updating issues.Douwe Maan2015-03-061-18/+10
|
* Allow mass-unassigning of issuesRobert Speicher2015-02-251-0/+19
| | | | | | Fixes #867 [ci skip]
* Rename bulk_update_context_spec to bulk_update_service_specRobert Speicher2015-02-251-0/+0
|
* Updated rspec to rspec 3.x syntaxJeroen van Baarsen2015-02-124-31/+31
| | | | Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
* Add labels notesNikita Verkhovin2015-02-081-1/+10
|
* Organize event order execution when update issue or mrDmitriy Zaporozhets2015-01-251-0/+1
|
* Merge branch 'remove-observers' into 'master'Dmitriy Zaporozhets2014-06-231-8/+5
|\ | | | | | | | | | | Remove observers from application Part of #1133
| * Remove rails observers from applicationDmitriy Zaporozhets2014-06-171-8/+5
| |
* | Revert "Merge branch 'fix-email-threading' into 'master'"Jacob Vosmaer2014-06-182-2/+2
|/ | | | | | | | | This reverts commit 97fd990ecde387290be269ef7daafa5761f94af6, reversing changes made to f451a697e0c018359e6d8ff3aaba4eb0484c4bee. Conflicts: app/mailers/emails/notes.rb app/mailers/emails/projects.rb
* Send notification emails to the "project", and put people in CcPierre de La Morinerie2014-06-102-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes email threading in Mail.app, that doesn't like when a thread doesn't have stable recipients. For instance, here is a possible sender-recipient combinations before: From: A To: Me New issue From: B To: Me Reply on new issue From: A To: Me Another reply Mail.app doesn't see B as a participant to the original email thread, and decides to break the thread: it will group all messages from A together, and separately all messages from B. This commit makes the thread look like this: From: A To: gitlab/project Cc: Me New issue From: B To: gitlab/project Cc: Me Reply on new issue From: A To: gitlab/project Cc: Me Another reply Mail.app sees a common recipient, and group the thread correctly.
* More tests for Isses servicesDmitriy Zaporozhets2014-04-022-2/+57
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Move update issue code to separate serviceDmitriy Zaporozhets2014-04-022-0/+25
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Move code for issue creation to service.Dmitriy Zaporozhets2014-04-021-0/+22
| | | | | | | | | The goal of suych refactoring is to get rid of observers. Its much easier to test and code when object creation and all other related actions done in one class instead of splited across observers, callbacks etc. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Replace context with service in specsDmitriy Zaporozhets2014-01-161-0/+113
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>