debian-mirror-gitlab/app/controllers/projects/error_tracking/base_controller.rb

12 lines
289 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
class Projects::ErrorTracking::BaseController < Projects::ApplicationController
POLLING_INTERVAL = 1_000
2021-01-03 14:25:43 +05:30
feature_category :error_tracking
2020-03-13 15:44:24 +05:30
def set_polling_interval
Gitlab::PollingInterval.set_header(response, interval: POLLING_INTERVAL)
end
end