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-12-22Improve performance of DiffDiscussion#truncated_diff_lines and ↵Douwe Maan
DiffNote#diff_line by removing expensive diff position calculation and comparison
2017-12-07adding view and feature specsmicael.bergeron
2017-11-13Prevents position update for image diff notesFelipe Artur
2017-10-13Move line code generation into Gitlab::GitAlejandro Rodríguez
Having a distinct class just for that was a bit overkill
2017-10-13Create a Gitlab::Git submodule for conlict-related filesAlejandro Rodríguez
Rename classes to (hopefully) clearer names while we're doing that.
2017-10-13Move Gitlab::Diff::LineCode to module Gitlab::GitAlejandro Rodríguez
2017-10-07Commenting on image diffsFelipe Artur
2017-07-27Remove superfluous lib: true, type: redis, service: true, models: true, ↵Rémy Coutable
services: true, no_db: true, api: true Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-31Update diff discussion position per discussion instead of per noteDouwe Maan
2017-05-23Pass fallback_diff_refs to Diff::File instead of using view helpersDouwe Maan
2017-05-03Allow commenting on older versions of the diff and comparisons between diff ↵Douwe Maan
versions
2017-04-10Add specsDouwe Maan
2017-04-05Don't use original_discussion_idDouwe Maan
2017-04-05Add specsDouwe Maan
2017-04-05Add option to start a new discussion on an MRDouwe Maan
2017-01-27Use `:empty_project` where possible in model specsRobert Speicher
2016-09-06Optimize discussion notes resolving and unresolvingAlejandro Rodríguez
Use `update_all` to only require one query per discussion to update the notes resolved status. Some changes had to be made to the discussion spec to accout for the fact that notes are not individually updated now
2016-08-17Store discussion_id on Note for faster discussion lookup.Douwe Maan
2016-08-16Address review feedbackDouwe Maan
2016-08-12Add specs for new Note and DiffNote methods.Douwe Maan
2016-08-02Speedup DiffNote#active? on discussions, preloading noteables and avoid ↵Paco Guzman
touching git repository to return diff_refs when possible - Preloading noteable we share the same noteable instance when more than one discussion refers to the same noteable. - Any other call to that object that is cached in that object will be for any discussion. - In those cases where merge_request_diff has all the sha stored to build a diff_refs get that diff_refs using directly those sha instead accessing to the git repository to first get the commits and later the sha.
2016-07-07Make `DiffNote#update_position` privateDouwe Maan
2016-07-07Add tests for DiffNoteDouwe Maan