debian-mirror-gitlab/app/controllers/projects/incident_management/timeline_events_controller.rb
2022-11-25 23:54:43 +05:30

16 lines
321 B
Ruby

# 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