app/cells/decidim/debates/reported_content_cell.rb



# frozen_string_literal: true

module Decidim
  module Debates
    # This cells renders a small preview of the `Debate` that is
    # used in the moderations panel.
    class ReportedContentCell < Decidim::ReportedContentCell
      def show
        render :show
      end
    end
  end
end