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