2021-01-03 14:25:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class WhatsNewController < ApplicationController
|
2021-02-22 17:27:13 +05:30
|
|
|
include Gitlab::Utils::StrongMemoize
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
skip_before_action :authenticate_user!
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
before_action :check_whats_new_enabled
|
2021-04-29 21:17:54 +05:30
|
|
|
before_action :check_valid_page_param, :set_pagination_headers
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
feature_category :navigation
|
2022-07-23 23:45:48 +05:30
|
|
|
urgency :low
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
def index
|
|
|
|
respond_to do |format|
|
|
|
|
format.js do
|
2021-03-11 19:13:27 +05:30
|
|
|
render json: highlights.items
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
def check_whats_new_enabled
|
|
|
|
render_404 if Gitlab::CurrentSettings.current_application_settings.whats_new_variant_disabled?
|
|
|
|
end
|
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
def check_valid_page_param
|
|
|
|
render_404 if current_page < 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def current_page
|
|
|
|
params[:page]&.to_i || 1
|
|
|
|
end
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
def highlights
|
|
|
|
strong_memoize(:highlights) do
|
2021-04-29 21:17:54 +05:30
|
|
|
ReleaseHighlight.paginated(page: current_page)
|
2021-02-22 17:27:13 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_pagination_headers
|
|
|
|
response.set_header('X-Next-Page', highlights.next_page)
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|