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

user_callouts_controller.rb « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df3e2425e9fa705fcb16afcf58ee9f4629cd55ee (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
26
27
# frozen_string_literal: true

class UserCalloutsController < ApplicationController
  feature_category :navigation

  def create
    callout = Users::DismissUserCalloutService.new(
      container: nil, current_user: current_user, params: { feature_name: feature_name }
    ).execute

    if callout.persisted?
      respond_to do |format|
        format.json { head :ok }
      end
    else
      respond_to do |format|
        format.json { head :bad_request }
      end
    end
  end

  private

  def feature_name
    params.require(:feature_name)
  end
end