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

timeline_events_controller.rb « incident_management « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e7a4758e48e2b23e7a96aaeed33ab07e2e4cf13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module Projects
  module IncidentManagement
    class TimelineEventsController < Projects::ApplicationController
      include PreviewMarkdown

      before_action :authenticate_user!

      respond_to :json

      feature_category :incident_management
      urgency :low
    end
  end
end