main #20

Merged
artem merged 16 commits from main into dev 2023-09-27 15:17:17 +02:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit e4c1f14300 - Show all commits

View File

@ -127,6 +127,7 @@ router.route("/:id/share")
let item = { let item = {
user_id: req.user._id, user_id: req.user._id,
object_id: album._id, object_id: album._id,
title: album.title,
type: "album", type: "album",
cover: album.covers.cover32 cover: album.covers.cover32
} }

View File

@ -129,6 +129,7 @@ router.route("/:id/share")
let item = { let item = {
user_id: req.user._id, user_id: req.user._id,
object_id: box._id, object_id: box._id,
title: box.title,
type: "box", type: "box",
cover: box.covers.cover32 cover: box.covers.cover32
} }