Welcome to mirror list, hosted at ThFree Co, Russian Federation.

wiki_page.rb « gitaly_client « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8226278d5f628661a079d6c842c10335c7238173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module Gitlab
  module GitalyClient
    class WikiPage
      FIELDS = %i(title format url_path path name historical raw_data).freeze

      attr_accessor(*FIELDS)

      def initialize(params)
        params = params.with_indifferent_access

        FIELDS.each do |field|
          instance_variable_set("@#{field}", params[field])
        end
      end

      def historical?
        @historical
      end

      def format
        @format.to_sym
      end
    end
  end
end