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
2018-07-27Enable frozen string in app/models/*.rbgfyoung
Partially addresses #47424.
2018-07-11Revert "Merge branch 'ee-5481-epic-todos' into 'master'"Jarka Kadlecová
This reverts commit 4d9a3f42f1fd3be21555e19872b7121cca65015e, reversing changes made to ecf9c145f6e4d170cd059df88743393d9e63c489.
2018-07-03More EE->CE fixesJan Provaznik
2018-07-03[backend] Addressed review commentsJan Provaznik
* Group filtering now includes also issues/MRs from subgroups/subprojects * fixed due_date * Also DRYed todo controller specs
2018-07-03Support todos for epics backportJarka Kadlecová
2018-04-18Revert the addition of goldiloaderYorick Peterse
This reverts the addition of the "goldiloader" Gem and all use of it. While this Gem is very promising it's causing a variety of problems on GitLab.com due to it eager-loading too much data in places where we don't expect/can handle this. At least for the time being this means we have to go back to manually fixing N+1 query problems, but at least those should not cause a negative impact on availability.
2018-04-09Use Goldiloader for handling N+1 queriesYorick Peterse
Goldiloader (https://github.com/salsify/goldiloader) can eager load associations automatically. This removes the need for adding "includes" calls in a variety of different places. This also comes with the added benefit of not having to eager load data if it's not used.
2018-04-04[Rails5] Rename `sort` methods to `sort_by_attribute`blackst0ne
2018-03-05Remove default scope from todosSean McGivern
This was causing todo priority sorting to fail.
2018-02-05Set todos#author_id to NOT NULL.Andreas Brandl
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-07Added Cop to blacklist polymorphic associationsYorick Peterse
One should really use a separate table instead of using polymorphic associations. See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/11168 for more information.
2017-04-28Improve text on todo list when the todo action comes from yourselfJacopo
Improved todo message when an issue is assigned to yourself. - The new message when an user assign to himself an issue or a mr is: "You assigned issue xx to yourself" - The new message when an user adds a todo to himself is: "You added a todo for issue xx" - The new message when and user mention himself is: "You mentioned yourself on issue xx" - The new message when an user directly address himself is: "You directly addressed yourself on issue xx" - The new message when an user mark himself as an approver is: "You set yourself as an approver for merge request xx"
2017-03-15Allow sorting by due date and label prioritySean McGivern
2017-02-23Revert "Prefer leading style for Style/DotPosition"Douwe Maan
This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b.
2017-02-23Prefer leading style for Style/DotPositionDouwe Maan
2017-02-23Enable Style/MutableConstantDouwe Maan
2017-02-08Create directly_addressed Todos when mentioned in beginning of a lineErshad Kunnakkadan
2017-01-28Present TODO's list without grouping by projectOswaldo Ferreira
2017-01-14Notify the user who set auto-merge when merge conflict occurstwonegatives
2016-10-28Fix and improve `Sortable.highest_label_priority`Alejandro Rodríguez
2016-10-19Use keyword arguments on Sortable#highest_label_priorityDouglas Barbosa Alexandre
2016-10-19Fix sorting by label prioritiesDouglas Barbosa Alexandre
2016-08-19Todos sorting dropdownFelipe Artur
2016-07-12Add approval required todosSean McGivern
2016-07-04Don't garbage collect commits that have related DB records like commentsDouwe Maan
2016-07-01Expose action_nameRobert Schilling
2016-07-01Move to helper, no instance variablesRobert Schilling
2016-07-01Add Todos APIDouglas Barbosa Alexandre
2016-06-14Manually create todo for issuablePhil Hughes
Added a button into the sidebar for issues & merge requests to allow users to manually create todo items Closes #15045
2016-05-17Create a todo on failing MR buildSean McGivern
When a build fails for a commit, create a todo for the author of the merge request that commit is the HEAD of. If the commit isn't the HEAD commit of any MR, don't do anything. If there already is a todo for that user and MR, don't do anything. Current limitations: - This isn't configurable by project. - The author of a merge request might not be the person who pushed the breaking commit.
2016-05-09Remove the annotate gem and delete old annotationsJeroen van Baarsen
In 8278b763d96ef10c6494409b18b7eb541463af29 the default behaviour of annotation has changes, which was causing a lot of noise in diffs. We decided in #17382 that it is better to get rid of the whole annotate gem, and instead let people look at schema.rb for the columns in a table. Fixes: #17382
2016-03-18Refactor `Todo#target`Douglas Barbosa Alexandre
2016-03-18Rename `Todo#to_reference` to `Todo#target_reference`Douglas Barbosa Alexandre
Since we're not actually returning a todo reference.
2016-03-18Use `Commit#short_id` instead of `Commit.truncate_sha`Douglas Barbosa Alexandre
2016-03-18Reuse `for_commit?` on conditional validationsDouglas Barbosa Alexandre
2016-03-18Update schema info comment on todo related filesDouglas Barbosa Alexandre
2016-03-18Use todo.done without ! in the controller to mark todo as doneDouglas Barbosa Alexandre
2016-03-18Trigger a todo for mentions on commits pageDouglas Barbosa Alexandre
2016-02-23Does not raise an error when Todo is already marked as doneDouglas Barbosa Alexandre
2016-02-20"X assigned you Y" instead of "X assigned Y"Douwe Maan
2016-02-20Rename Tasks to TodosDouglas Barbosa Alexandre