public setName()

in source/frontend/src/services/name-service.ts [19:26]


  public setName(name: string, photoIds: string[]): Promise<void> {
    return Client.patch('api', `${this.resource}`, {
      body: {
        name,
        photo_ids: photoIds,
      },
    });
  }