Remove legacy sharing from frontend

This commit is contained in:
Max Berger
2026-03-28 09:36:29 +01:00
parent 5ab80a8779
commit 69a6a61ef8
4 changed files with 3 additions and 8 deletions

View File

@@ -225,8 +225,7 @@ function add_share_rows(user, password, collection, shares, errorHandler) {
if (share["ShareType"] === "token") {
add_share_row_node(user, password, collection, share, token_template, "share", delete_share_by_token, errorHandler);
}
// TODO: Eventually remove bday
else if (share["ShareType"] === "map" || share["ShareType"] === "bday") {
else if (share["ShareType"] === "map") {
add_share_row_node(user, password, collection, share, map_template, "map", delete_share_by_map, errorHandler);
}
}