diff options
author | Rémy Coutable <remy@rymai.me> | 2018-09-06 17:20:28 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-09-06 17:20:28 +0000 |
commit | dd6604027411c407b675be52285b158fa9f0bf89 (patch) | |
tree | 7a0f3c7fac9871008e890cf7b40a8a451757ccce /app/models/commit.rb | |
parent | 2ab67aeb51e13c8fd0f815bdd77d28e168f0a2ea (diff) | |
parent | eea1b88547bb038b34b0691f0280d54d5dd23947 (diff) | |
download | gitlab-ce-51201-document-review-apps.tar.gz |
Merge branch '43140-reduce-logs-tree-load' into 'master'51201-document-review-apps
Bulk-render commit titles in the tree view to improve performance
Closes #43140
See merge request gitlab-org/gitlab-ce!21500
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r-- | app/models/commit.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb index 594972ad344..49c36ad9d3f 100644 --- a/app/models/commit.rb +++ b/app/models/commit.rb @@ -22,6 +22,7 @@ class Commit attr_accessor :project, :author attr_accessor :redacted_description_html attr_accessor :redacted_title_html + attr_accessor :redacted_full_title_html attr_reader :gpg_commit DIFF_SAFE_LINES = Gitlab::Git::DiffCollection::DEFAULT_LIMITS[:max_lines] |