Create contents label for group of shared mediafiles

This commit is contained in:
Deluan 2023-01-23 20:44:21 -05:00
parent 63e67bd502
commit 6c05fcb699
3 changed files with 84 additions and 17 deletions

View file

@ -38,6 +38,9 @@ func (api *Router) buildShare(r *http.Request, share model.Share) responses.Shar
LastVisited: share.LastVisitedAt,
VisitCount: share.VisitCount,
}
if resp.Description == "" {
resp.Description = share.Contents
}
if len(share.Albums) > 0 {
resp.Entry = childrenFromAlbums(r.Context(), share.Albums)
} else {