public setTags()

in source/frontend/src/services/photo-service.ts [121:125]


  public setTags(photoId: string, tags: string[]): Promise<void> {
    return Client.put('api', `${this.resource}/${photoId}/tags`, {
      body: tags,
    });
  }