class Admission::ProfileFieldDecorator < ApplicationDecorator
  def labelize
    return field.titleize unless ['email', 'cell_phone', 'work_phone'].include?(field)

    "Student #{field.titleize}"
  end
end
