fetchFindspots(): Bluebird<Findspot[]> {
    return this.apiClient
      .fetchJson('/findspots', false)
      .then((findspots) => findspots.map(fromFindspotDto))
  }