summaryrefslogtreecommitdiff
path: root/app/helpers/whats_new_helper.rb
blob: f0044daa645bdda39334c30127fe6fefad307e20 (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
# frozen_string_literal: true

module WhatsNewHelper
  EMPTY_JSON = ''.to_json

  def whats_new_most_recent_release_items
    YAML.load_file(most_recent_release_file_path).to_json

  rescue => e
    Gitlab::ErrorTracking.track_exception(e, yaml_file_path: most_recent_release_file_path)

    EMPTY_JSON
  end

  private

  def most_recent_release_file_path
    Dir.glob(files_path).max
  end

  def files_path
    Rails.root.join('data', 'whats_new', '*.yml')
  end
end