def authorized_create?
    # Current user must exist, and the community in question must be in the 'current' school.
    unless current_user.present? && (community&.school == current_school)
      return false
    end