summaryrefslogtreecommitdiff
path: root/app/controllers/projects/incident_management/timeline_events_controller.rb
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