class ConnectionLogDecorator < ApplicationDecorator
  def associated_name
    case associated_type
    when 'Contact', 'Student', 'Admission::Applicant'
      associated&.full_name
    when 'School', 'Family'
      associated&.name
    end
  end
end
