diff options
author | Ahmad Sherif <me@ahmadsherif.com> | 2018-01-24 17:52:44 +0100 |
---|---|---|
committer | Ahmad Sherif <me@ahmadsherif.com> | 2018-01-24 21:14:11 +0100 |
commit | 5735747050543a9e68aeb8f017c995e6119a9510 (patch) | |
tree | f37567f29d5504c57f5f666f8d52d0ea0a75c988 /lib | |
parent | a403011e4f7adae339a3a8584e22a75f4872c3c5 (diff) | |
download | gitlab-ce-5735747050543a9e68aeb8f017c995e6119a9510.tar.gz |
Add formatted_data attribute to Git::WikiPage
Related to #39805
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/git/wiki_page.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/gitlab/git/wiki_page.rb b/lib/gitlab/git/wiki_page.rb index a06bac4414f..669ae11a423 100644 --- a/lib/gitlab/git/wiki_page.rb +++ b/lib/gitlab/git/wiki_page.rb @@ -1,7 +1,7 @@ module Gitlab module Git class WikiPage - attr_reader :url_path, :title, :format, :path, :version, :raw_data, :name, :text_data, :historical + attr_reader :url_path, :title, :format, :path, :version, :raw_data, :name, :text_data, :historical, :formatted_data # This class is meant to be serializable so that it can be constructed # by Gitaly and sent over the network to GitLab. @@ -21,6 +21,7 @@ module Gitlab @raw_data = gollum_page.raw_data @name = gollum_page.name @historical = gollum_page.historical? + @formatted_data = gollum_page.formatted_data if gollum_page.is_a?(Gollum::Page) @version = version end |