module Decidim::Meetings::MeetingsHelper

def author_presenter_for(author)

def author_presenter_for(author)
  if author.is_a?(Decidim::Organization)
    Decidim::Meetings::OfficialAuthorPresenter.new
  else
    present(author)
  end
end