debian-mirror-gitlab/app/controllers/projects/service_ping_controller.rb
2023-04-23 21:23:45 +05:30

13 lines
295 B
Ruby

# 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