2019-12-26 22:10:19 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
class Projects::ServicePingController < Projects::ApplicationController
|
2019-12-26 22:10:19 +05:30
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
feature_category :web_ide
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
def web_ide_pipelines_count
|
|
|
|
Gitlab::UsageDataCounters::WebIdeCounter.increment_pipelines_count
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
head(:ok)
|
2020-05-24 23:13:21 +05:30
|
|
|
end
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|