summaryrefslogtreecommitdiff
path: root/lib/banzai/reference_parser/epic_parser.rb
blob: 08b8a4c9a0f080e778498c384bd32a29c8ef0618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module Banzai
  module ReferenceParser
    # The actual parser is implemented in the EE mixin
    class EpicParser < IssuableParser
      self.reference_type = :epic

      def records_for_nodes(_nodes)
        {}
      end
    end
  end
end