summaryrefslogtreecommitdiff
path: root/app
Commit message (Collapse)AuthorAgeFilesLines
* Fixed issue with header overflowheader-overflow-small-devicesPhil Hughes2016-02-222-1/+1
| | | | Fixes #13492
* Merge branch 'issue_13463' into 'master' Jacob Schatz2016-02-223-1/+10
|\ | | | | | | | | | | | | Fix Side-by-side view after loading diff results Fixes #13463 See merge request !2880
| * Update button selectorissue_13463Alfredo Sumaran2016-02-191-1/+1
| |
| * Fixes syntax errorAlfredo Sumaran2016-02-191-1/+1
| |
| * Change method name for consistencyAlfredo Sumaran2016-02-191-2/+2
| |
| * Make diff view name getter less error proneAlfredo Sumaran2016-02-192-5/+3
| |
| * Add commentAlfredo Sumaran2016-02-191-0/+2
| |
| * Add missing class to builds pageAlfredo Sumaran2016-02-181-0/+1
| |
| * Expand view container if diff mode is set to paralellsAlfredo Sumaran2016-02-181-0/+8
| |
* | removed merge-request-no-votes css classPhil Hughes2016-02-221-3/+1
| |
* | Fixed failing issues testsPhil Hughes2016-02-221-10/+2
| | | | | | | | Removed up/down vote icons from merge requests. Was missed from d8069bd85863ab8c47d2bb2370221b17fb686b93
* | Only show up or down votes icon on issue list if there are anyPhil Hughes2016-02-222-11/+3
| | | | | | | | Closes #13649
* | Merge branch 'tasks' into 'master' Douglas Barbosa Alexandre2016-02-2224-14/+754
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Todos Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/2425 Tasks: - Prepare database - [X] Create a new table (`todos`) - Tasks Queue view - [X] Add a number icon showing the number of todos on the top right next to the new and logout button that will redirect the user to the todos page - [X] Add a chronological list of todos, with the 'Todos' tab active by default - [X] Add a 'Done' button to each todo - [x] Add filters (project, author, type, and action) - Todos generation - [X] When user issue/mr is assgined to someone - [x] When user is mentioned on (issues/mr's/comments) - Mark todo as `done` - [X] When clicks on the 'Done' button - [X] When edit issue/mr - [X] When left/edit a comment - [X] When reassign issue/mr - [X] When add/remove labels to issue/mr - [X] When issue/mr is closed - [X] When mr is merged - [X] When added an emoji - [X] When changed the issue/mr milestone * Screenshot: ![Screenshot_2016-02-20_12.45.57](/uploads/4b2554b1bde25aed3347e1ae41e8e0c0/Screenshot_2016-02-20_12.45.57.png) See merge request !2817
| * | Use before_action instead of before_filterDouglas Barbosa Alexandre2016-02-211-1/+1
| | |
| * | "X assigned you Y" instead of "X assigned Y"Douwe Maan2016-02-203-12/+8
| | |
| * | Add "Mark all as done" buttonDouwe Maan2016-02-203-5/+49
| | |
| * | Include 'issue'/'merge request' in linkDouwe Maan2016-02-202-10/+5
| | |
| * | Rename tab from 'Todos' to 'To do'Douwe Maan2016-02-201-1/+1
| | |
| * | Fix rubucop offensesDouglas Barbosa Alexandre2016-02-201-2/+0
| | |
| * | Rename Tasks to TodosDouglas Barbosa Alexandre2016-02-2025-213/+205
| | |
| * | Rename IssuableBaseService#have_changes? to has_changes?Douglas Barbosa Alexandre2016-02-203-3/+3
| | |
| * | Refactoring TasksHelperDouglas Barbosa Alexandre2016-02-202-9/+2
| | |
| * | Improve tasks page list UIDouglas Barbosa Alexandre2016-02-201-2/+2
| | |
| * | Create or mark task pending as soon the action happensDouglas Barbosa Alexandre2016-02-204-3/+3
| | |
| * | Rename menu item and page 'Task queue' to 'Tasks'Douglas Barbosa Alexandre2016-02-203-9/+9
| | |
| * | Ensure that we only have one task per issue/mrDouglas Barbosa Alexandre2016-02-203-92/+66
| | |
| * | Explicit mention of the assignee make a taskDouglas Barbosa Alexandre2016-02-201-6/+5
| | | | | | | | | | | | 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-205-60/+32
| | |
| * | Improve formatted message for tasks when action is a mentionDouglas Barbosa Alexandre2016-02-201-1/+1
| | |
| * | Use destroy, in case we ever have before_destroy callbacks on TaskDouglas Barbosa Alexandre2016-02-201-1/+1
| | |
| * | Fix task factoryDouglas Barbosa Alexandre2016-02-201-1/+1
| | |
| * | Fix rubocop offensesDouglas Barbosa Alexandre2016-02-201-1/+1
| | |
| * | Add filters by project, author, type, and action to task queue page listDouglas Barbosa Alexandre2016-02-204-13/+202
| | |
| * | 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-203-16/+67
| | |
| * | Does not create a task if new assignee is the current userDouglas Barbosa Alexandre2016-02-201-4/+3
| | |
| * | Create a pending task when a user is mentioned on a noteDouglas Barbosa Alexandre2016-02-208-20/+109
| | |
| * | Create a pending task when a user is mentioned on issue/mrDouglas Barbosa Alexandre2016-02-202-6/+28
| | |
| * | Rename TaskService#mark_as_done to mark_pending_tasks_as_doneDouglas Barbosa Alexandre2016-02-203-8/+8
| | |
| * | 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-202-0/+9
| | |
| * | Marks pending tasks for an user as done when he close the MRDouglas Barbosa Alexandre2016-02-202-1/+10
| | |
| * | Marks pending tasks for an user as done when he edit a MRDouglas Barbosa Alexandre2016-02-201-0/+21
| | |
| * | Create a pending task when an MR is assigned to someoneDouglas Barbosa Alexandre2016-02-203-7/+33
| | |
| * | Mark pending tasks for the current user as done when he edit a noteDouglas Barbosa Alexandre2016-02-202-0/+15
| | |
| * | Mark pending tasks for the note author as done when he left a noteDouglas Barbosa Alexandre2016-02-202-2/+13
| | |
| * | 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-202-0/+10
| | |
| * | Marks pending tasks for an user as done when he edit an issueDouglas Barbosa Alexandre2016-02-204-3/+37
| | |