summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | | | | | | | | | | Add an endpoint to generate the default lists for a boardDouglas Barbosa Alexandre2016-08-173-0/+46
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add service to generate default board listsDouglas Barbosa Alexandre2016-08-172-0/+76
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Destroy related lists when a label is removedDouglas Barbosa Alexandre2016-08-172-0/+4
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Include the Issue#assignee in the response when listing issuesDouglas Barbosa Alexandre2016-08-173-2/+14
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Return Issue#iid instead of id when listing issuesDouglas Barbosa Alexandre2016-08-172-3/+3
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Ensure that we have only one list per label per boardDouglas Barbosa Alexandre2016-08-174-0/+23
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Removes all list-labels when moving to Backlog/DoneDouglas Barbosa Alexandre2016-08-172-11/+26
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Use zero-based positions on issues board servicesDouglas Barbosa Alexandre2016-08-179-48/+57
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Move endpoint to list issues under lists resourcesDouglas Barbosa Alexandre2016-08-173-9/+14
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Rename `list_id` param to `id` in Boards::Issues::ListServiceDouglas Barbosa Alexandre2016-08-172-5/+5
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Refactor spec for Projects::BoardListsControllerDouglas Barbosa Alexandre2016-08-171-49/+36
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add endpoint to allow users to move issues between listsDouglas Barbosa Alexandre2016-08-174-13/+72
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Extract base service class for boards related servicesDouglas Barbosa Alexandre2016-08-1713-75/+45
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add endpoint to list issues for a specific board listDouglas Barbosa Alexandre2016-08-174-0/+99
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add service to list issues for a board listDouglas Barbosa Alexandre2016-08-172-0/+146
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Handle formats at the controller level in Projects::BoardListsControllerDouglas Barbosa Alexandre2016-08-171-22/+18
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add endpoint to allow users to remove listsDouglas Barbosa Alexandre2016-08-173-1/+47
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Rename `list_id` param to `id` in Boards::Lists::DestroyServiceDouglas Barbosa Alexandre2016-08-172-5/+5
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add endpoint to allow users to move listsDouglas Barbosa Alexandre2016-08-173-1/+75
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Rename `list_id` param to `id` in Boards::Lists::MoveServiceDouglas Barbosa Alexandre2016-08-172-11/+11
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add endpoint to allow users to create a new board listDouglas Barbosa Alexandre2016-08-173-1/+71
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Projects::BoardsController#show returns a list of board listsDouglas Barbosa Alexandre2016-08-174-7/+79
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add json-schema gem to test groupDouglas Barbosa Alexandre2016-08-172-0/+4
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Creates a new board when project does not have oneDouglas Barbosa Alexandre2016-08-172-0/+6
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Initial issues board pageDouglas Barbosa Alexandre2016-08-175-0/+42
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Remove label_list factoryDouglas Barbosa Alexandre2016-08-176-20/+17
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | The lists: Backlog, and Done cannot be destroyedDouglas Barbosa Alexandre2016-08-174-2/+31
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Title of a list is either the label name, or Backlog, or DoneDouglas Barbosa Alexandre2016-08-172-0/+30
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Order board lists by list_type, and positionDouglas Barbosa Alexandre2016-08-1714-103/+113
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Respect Backlog/Done positions when creating a new listDouglas Barbosa Alexandre2016-08-172-11/+57
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Extract new list position validation to a methodDouglas Barbosa Alexandre2016-08-171-4/+7
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Check if user can update the issue before moving it betweens listsDouglas Barbosa Alexandre2016-08-171-0/+1
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add service to move issues between listsDouglas Barbosa Alexandre2016-08-172-0/+183
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Does not allow Backlog/Done lists to be movedDouglas Barbosa Alexandre2016-08-172-67/+94
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Does not allow Backlog/Done lists to be removedDouglas Barbosa Alexandre2016-08-173-15/+45
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Create Backlog/Done lists when creating a new boardDouglas Barbosa Alexandre2016-08-172-13/+32
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add service to remove a list from boardDouglas Barbosa Alexandre2016-08-172-0/+64
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add service to move board listsDouglas Barbosa Alexandre2016-08-172-0/+128
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add service to create a board listDouglas Barbosa Alexandre2016-08-174-0/+58
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add service to create a new board for a projectDouglas Barbosa Alexandre2016-08-173-0/+44
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | fixup! Add List modelDouglas Barbosa Alexandre2016-08-171-0/+4
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add Board modelDouglas Barbosa Alexandre2016-08-179-0/+108
| | | |_|_|_|_|_|_|/ / / / / / | | |/| | | | | | | | | | | |
| * | | | | | | | | | | | | | Merge branch 'fix-diff-comments-bug' into 'master' Jacob Schatz2016-08-172-2/+6
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix diff comments inverted toggle bug ## What does this MR do? Explicitly set the comments visibility toggle based on the `active` css class. ## Are there points in the code the reviewer needs to double check? Shouldn't be ## Why was this MR needed? Fixes existing UI bug ## What are the relevant issue numbers? Closes #20898 ## Screenshots (if relevant) Before: ![A1ccIDEWsI](/uploads/21175e2008ee4e00225c22afebd873aa/A1ccIDEWsI.gif) After: ![jHoFp69mAK](/uploads/e85f429d60a4e56d588faec51cd8648a/jHoFp69mAK.gif) ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - Tests - [x] All builds are passing - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !5818
| | * | | | | | | | | | | | | | Fix diff comments inverted toggle bugClement Ho2016-08-172-2/+6
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Merge branch 'custom-events-tracking' into 'master' Douwe Maan2016-08-1716-6/+219
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tracking of custom events ## What does this MR do? This MR adds the ability to track custom events such as the number of Git pushes. ## Are there points in the code the reviewer needs to double check? The usual stuff. ## Why was this MR needed? We want to track more business level data such as the number of Git pushes, how many repositories are imported (and from where), etc. ## What are the relevant issue numbers? gitlab-org/gitlab-ce#13720 ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [x] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [x] ~~API support added~~ - Tests - [x] Added for this feature/bug - [x] All builds are passing - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) cc @pcarranza See merge request !5830
| | * | | | | | | | | | | | | | Tracking of custom eventscustom-events-trackingYorick Peterse2016-08-1716-6/+219
| | | |_|_|_|_|_|_|/ / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GitLab Performance Monitoring is now able to track custom events not directly related to application performance. These events include the number of tags pushed, repositories created, builds registered, etc. The use of these events is to get a better overview of how a GitLab instance is used and how that may affect performance. For example, a large number of Git pushes may have a negative impact on the underlying storage engine. Events are stored in the "events" measurement and are not prefixed with "rails_" or "sidekiq_", this makes it easier to query events with the same name triggered from different parts of the application. All events being stored in the same measurement also makes it easier to downsample data. Currently the following events are tracked: * Creating repositories * Removing repositories * Changing the default branch of a repository * Pushing a new tag * Removing an existing tag * Pushing a commit (along with the branch being pushed to) * Pushing a new branch * Removing an existing branch * Importing a repository (along with the URL we're importing) * Forking a repository (along with the source/target path) * CI builds registered (and when no build could be found) * CI builds being updated * Rails and Sidekiq exceptions Fixes gitlab-org/gitlab-ce#13720
| * | | | | | | | | | | | | | Merge branch 'mc-ui'Douwe Maan2016-08-1741-44/+2097
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # app/controllers/projects/merge_requests_controller.rb
| | * | | | | | | | | | | | | | Use bundled Vue libmc-uiSean McGivern2016-08-172-10074/+1
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Merge remote-tracking branch 'origin/master' into mc-uiSean McGivern2016-08-17168-691/+14303
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | |_|/ / / / / / / / / / / | | | |/| | | | | | | | | | | |
| | * | | | | | | | | | | | | | Reference the version 'UI resolve conflicts' was introducedAchilleas Pipinellis2016-08-171-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]