Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-02-20Rename Tasks to TodosDouglas Barbosa Alexandre
2016-02-20Create a pending task when a user is mentioned when edit a issue/mr/noteDouglas Barbosa Alexandre
2016-02-20Marks pending tasks for an user as done when he close the issueDouglas Barbosa Alexandre
2016-02-20Marks pending tasks for an user as done when he edit an issueDouglas Barbosa Alexandre
2016-02-20Create a pending task when an issue is assigned to someoneDouglas Barbosa Alexandre
2015-12-09Tag service specsDouwe Maan
2015-11-30test fixValery Sizov
2015-11-20Little fix for Rubocop's complaints. #2296Rubén Dávila
2015-11-20Fix bug that happened when replacing the Task list. #2296Rubén Dávila
REF: https://gitlab.com/gitlab-org/gitlab-ce/issues/2296#note_2724697
2015-11-20Generate system note after Task item has been updated on Issue or Merge ↵Ruben Davila
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.
2015-11-17Add tests for merge request update.Douwe Maan
2015-11-17Fix specDouwe Maan
2015-11-09Add notification to the former assignee upon unassignmentadamliesko
2015-06-22Fix Style/Blocks cop violationsRobert Speicher
2015-06-12Fix post-receive errors on a push when an external issue tracker is configuredStan Hu
Closes #1700 Closes #1720
2015-05-27Change one-character variable nameRobert Speicher
[ci skip]
2015-05-27Add a note when an Issue or Merge Request's title changesRobert Speicher
2015-05-15Fix specs.Douwe Maan
2015-03-06Send notifications and leave system comments when bulk updating issues.Douwe Maan
2015-02-26Allow mass-unassigning of issuesRobert Speicher
Fixes #867 [ci skip]
2015-02-26Rename bulk_update_context_spec to bulk_update_service_specRobert Speicher
2015-02-12Updated rspec to rspec 3.x syntaxJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2015-02-08Add labels notesNikita Verkhovin
2015-01-26Organize event order execution when update issue or mrDmitriy Zaporozhets
2014-06-23Merge branch 'remove-observers' into 'master'Dmitriy Zaporozhets
Remove observers from application Part of #1133
2014-06-18Revert "Merge branch 'fix-email-threading' into 'master'"Jacob Vosmaer
This reverts commit 97fd990ecde387290be269ef7daafa5761f94af6, reversing changes made to f451a697e0c018359e6d8ff3aaba4eb0484c4bee. Conflicts: app/mailers/emails/notes.rb app/mailers/emails/projects.rb
2014-06-17Remove rails observers from applicationDmitriy Zaporozhets
2014-06-10Send notification emails to the "project", and put people in CcPierre de La Morinerie
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.
2014-04-02More tests for Isses servicesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-04-02Move update issue code to separate serviceDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-04-02Move code for issue creation to service.Dmitriy Zaporozhets
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>
2014-01-16Replace context with service in specsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>