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

item_presenter.rb « whats_new « gitlab « presenters « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f66e19ade053fde52704be612a77557b1bfd5b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Gitlab
  module WhatsNew
    class ItemPresenter
      DICTIONARY = {
        core: 'Free',
        starter: 'Bronze',
        premium: 'Silver',
        ultimate: 'Gold'
      }.freeze

      def self.present(item)
        if Gitlab.com?
          item['packages'] = item['packages'].map { |p| DICTIONARY[p.downcase.to_sym] }
        end

        item
      end
    end
  end
end