debian-mirror-gitlab/app/controllers/projects/incident_management/timeline_events_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
321 B
Ruby
Raw Normal View History

2022-11-25 23:54:43 +05:30
# 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