#69 - Partager ma collection

This commit is contained in:
Damien Broqua 2022-11-02 09:48:05 +01:00
parent e01f01337c
commit a56db99a81
2 changed files with 2 additions and 1 deletions

View File

@ -20,7 +20,7 @@ if (typeof isPublicCollection !== "undefined") {
itemId: null,
showModalDelete: false,
showModalShare: false,
shareLink: `${protocol}//${host}/collection/<%= user._id %>`,
shareLink: `${protocol}//${host}/collection/${userId}`,
// eslint-disable-next-line no-undef
isPublicCollection,
};

View File

@ -197,4 +197,5 @@
<script>
const isPublicCollection = <%= user.isPublicCollection ? 'true' : 'false' %>;
const userId = "<%= user._id %>";
</script>