summaryrefslogtreecommitdiff
path: root/app/controllers/projects/service_ping_controller.rb
blob: 8c16b6b230efbf7f88c9ba095a00673e560792ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class Projects::ServicePingController < Projects::ApplicationController
  before_action :authenticate_user!

  feature_category :web_ide

  def web_ide_pipelines_count
    Gitlab::UsageDataCounters::WebIdeCounter.increment_pipelines_count

    head(:ok)
  end
end