public get student(): User | undefined {
    return this.people.find((p) => p.roles.includes('tutee'));
  }