summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Explicit mention of the assignee make a taskDouglas Barbosa Alexandre2016-02-202-10/+9
| | | | Since potentially the previous assign-task has already been handled.
* :lipstick: Cosmetic changesDouglas Barbosa Alexandre2016-02-201-21/+21
|
* Refactoring task queue partialsDouglas Barbosa Alexandre2016-02-206-79/+37
|
* Improve formatted message for tasks when action is a mentionDouglas Barbosa Alexandre2016-02-203-5/+11
|
* Use destroy, in case we ever have before_destroy callbacks on TaskDouglas Barbosa Alexandre2016-02-202-2/+2
|
* Fix task factoryDouglas Barbosa Alexandre2016-02-203-3/+6
|
* Fix rubocop offensesDouglas Barbosa Alexandre2016-02-202-4/+4
|
* Update CHANGELOGDouglas Barbosa Alexandre2016-02-201-0/+1
|
* Fix pending examples from task model specDouglas Barbosa Alexandre2016-02-201-4/+30
|
* Add filters by project, author, type, and action to task queue page listDouglas Barbosa Alexandre2016-02-206-37/+317
|
* Add a link to Task Queue on dashboard sidebarDouglas Barbosa Alexandre2016-02-201-6/+12
|
* Create a pending task when a user is mentioned when edit a issue/mr/noteDouglas Barbosa Alexandre2016-02-2010-100/+146
|
* Does not create a task if new assignee is the current userDouglas Barbosa Alexandre2016-02-202-4/+15
|
* Create a pending task when a user is mentioned on a noteDouglas Barbosa Alexandre2016-02-2013-21/+146
|
* Create a pending task when a user is mentioned on issue/mrDouglas Barbosa Alexandre2016-02-203-36/+94
|
* Rename TaskService#mark_as_done to mark_pending_tasks_as_doneDouglas Barbosa Alexandre2016-02-204-10/+10
|
* Move common behavior to to IssuableBaseServiceDouglas Barbosa Alexandre2016-02-203-34/+13
|
* Marks pending tasks for an user as done when he merge the MRDouglas Barbosa Alexandre2016-02-203-0/+26
|
* Marks pending tasks for an user as done when he close the MRDouglas Barbosa Alexandre2016-02-204-1/+34
|
* Marks pending tasks for an user as done when he edit a MRDouglas Barbosa Alexandre2016-02-202-1/+75
|
* Create a pending task when an MR is assigned to someoneDouglas Barbosa Alexandre2016-02-206-15/+142
|
* Mark pending tasks for the current user as done when he edit a noteDouglas Barbosa Alexandre2016-02-203-0/+60
|
* Mark pending tasks for the note author as done when he left a noteDouglas Barbosa Alexandre2016-02-204-6/+53
|
* Fix rubocop offensesDouglas Barbosa Alexandre2016-02-201-5/+5
|
* Marks pending tasks for an user as done when he close the issueDouglas Barbosa Alexandre2016-02-204-0/+35
|
* Marks pending tasks for an user as done when he edit an issueDouglas Barbosa Alexandre2016-02-207-14/+130
|
* Remove task abilities, since we will only ever show the user their ownDouglas Barbosa Alexandre2016-02-202-19/+0
|
* Add feature spec for task queue list pageDouglas Barbosa Alexandre2016-02-204-0/+102
|
* Add pending tasks badge on top right next to the new and logout buttonDouglas Barbosa Alexandre2016-02-205-6/+25
|
* Allow user to mark each task as done manuallyDouglas Barbosa Alexandre2016-02-205-1/+43
|
* Does not create a task for new issue when assignee is the current userDouglas Barbosa Alexandre2016-02-202-1/+5
|
* Create a pending task when an issue is assigned to someoneDouglas Barbosa Alexandre2016-02-207-2/+141
|
* Fix task queue list page titleDouglas Barbosa Alexandre2016-02-201-2/+2
|
* Add tasks queue list pageDouglas Barbosa Alexandre2016-02-208-0/+211
|
* Add task modelDouglas Barbosa Alexandre2016-02-206-1/+95
|
* Merge branch 'doc_artifacts_api' into 'master' Achilleas Pipinellis2016-02-201-11/+6
|\ | | | | | | | | | | | | | | | | | | | | | | | | Fix docs on artifacts API Small fixes for https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2893 - Backticks in parameters - Remove headings - Fix curl URL link See merge request !2902
| * Fix docs on artifacts APIAchilleas Pipinellis2016-02-201-11/+6
|/ | | | | | | | - Backticks in parameters - Remove headings - Fix curl URL link [ci skip]
* Merge branch 'visibletrap/gitlab-ce-label'Douwe Maan2016-02-1918-19/+70
|\
| * Missing @ in @labelsTap2016-02-191-1/+1
| |
| * Pull right side of label row outTap2016-02-192-11/+11
| |
| * Find label in issues_finderTap2016-02-193-4/+20
| |
| * Fix label - description spacingTap2016-02-191-1/+2
| |
| * Remove unnecessary .present?Tap2016-02-191-1/+1
| |
| * Add my name to the changelogTap2016-02-191-2/+2
| |
| * Label description and Label rowTap2016-02-1717-25/+59
| | | | | | | | | | - Add label description - Show label row when filtering issues or merge requests by label
* | Merge branch 'rs-move-controller-specs' into 'master' Douwe Maan2016-02-205-0/+0
|\ \ | | | | | | | | | | | | | | | | | | Move a few controller specs to their correct locations See merge request !2889
| * | Move a few controller specs to their correct locationsrs-move-controller-specsRobert Speicher2016-02-185-0/+0
| | |
* | | Merge branch 'rs-blob' into 'master' Douwe Maan2016-02-206-17/+118
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a `Blob` model that wraps `Gitlab::Git::Blob` This allows us to take advantage of Rails' `to_partial_path` to render the correct partial based on the Blob type, rather than cluttering the view with conditionals. It also allows (and will allow in the future) better encapsulation for Blob-related logic which makes sense for our Rails app but might not make as much sense for the core `gitlab_git` library, such as detecting if the blob is an SVG. See merge request !2887
| * | | Add a `Blob` model that wraps `Gitlab::Git::Blob`rs-blobRobert Speicher2016-02-186-17/+118
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows us to take advantage of Rails' `to_partial_path` to render the correct partial based on the Blob type, rather than cluttering the view with conditionals. It also allows (and will allow in the future) better encapsulation for Blob-related logic which makes sense for our Rails app but might not make as much sense for the core `gitlab_git` library, such as detecting if the blob is an SVG.
* | | Merge branch 'refactor-scan' into 'master' Douwe Maan2016-02-201-6/+5
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Improve readability of 'rake cache:clear' code See merge request !2892