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
2017-08-31API: Use defined project requirementsRobert Schilling
2017-08-03Avoid plucking Todo ids and use sub-queries insteadToon Claes
TodoService should not call `.select(&:id)` on todos, because this is bad performance. So instead use sub-queries, which will result in a single SQL query to the database. https://docs.gitlab.com/ee/development/sql.html#plucking-ids
2017-04-29Revert "Merge branch 'tc-no-todo-service-select' into 'master'"Stan Hu
This reverts merge request !10845
2017-04-27Avoid plucking Todo ids and use sub-queries insteadToon Claes
TodoService should not call `.select(&:id)` on todos, because this is bad performance. So instead use sub-queries, which will result in a single SQL query to the database. https://docs.gitlab.com/ee/development/sql.html#plucking-ids
2017-03-16Add `requirements: { id: %r{[^/]+} }` for all projects and groups namespaced ↵Rémy Coutable
API routes Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-07Migrate the Todos API to use `issuable_iid`Timothy Andrew
- Instead of `issuable_id`
2017-02-23Enable Style/MutableConstantDouwe Maan
2017-02-21API: Use POST requests to mark todos as doneRobert Schilling
2017-01-23Merge branch 'fix-api-mr-permissions' into 'security'Robert Speicher
Ensure that only privileged users can access merge requests in the API See merge request !2053
2016-12-04Use the pagination helper in the APIRobert Schilling
2016-10-14Grapify todos APIRobert Schilling
2016-08-12Recover usage of Todos counter cachePaco Guzman
We’re being kept up to date the counter data but we’re not using it. The only thing which is not real if is the number of projects that the user read changes the number of todos can be stale for some time. The counters will be sync just after the user receives a new todo or mark any as done
2016-08-12Use cache for todos counter calling TodoServicePaco Guzman
2016-07-19Return the number of marked todosRobert Schilling
2016-07-01Support creating a todo on issuables via APIRobert Schilling
2016-07-01Expose target, filter by state as stringRobert Schilling
2016-07-01Add todos API documentation and changelogRobert Schilling
2016-07-01pass paginated array when deleting notesRobert Schilling
2016-07-01Move to helper, no instance variablesRobert Schilling
2016-07-01Add Todos APIDouglas Barbosa Alexandre