[PR #1729] [CLOSED] Feat: add locked lists feature #1888

Closed
opened 2026-03-02 11:59:37 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/karakeep-app/karakeep/pull/1729
Author: @MadMaximusJB
Created: 7/12/2025
Status: Closed

Base: mainHead: main


📝 Commits (1)

  • 8e16e27 Feat: add locked lists feature. Enables users to lock lists, requiring a unique, encrypted password to access, excludes locked list content from homepage.

📊 Changes

24 files changed (+2960 additions, -114 deletions)

View changed files

📝 apps/web/app/dashboard/lists/[listId]/page.tsx (+17 -11)
📝 apps/web/components/dashboard/UploadDropzone.tsx (+1 -1)
📝 apps/web/components/dashboard/bookmarks/EditorCard.tsx (+1 -1)
📝 apps/web/components/dashboard/lists/AllListsView.tsx (+2 -1)
📝 apps/web/components/dashboard/lists/EditListModal.tsx (+60 -0)
📝 apps/web/components/dashboard/lists/ListHeader.tsx (+2 -1)
📝 apps/web/components/dashboard/lists/ListOptions.tsx (+121 -74)
apps/web/components/dashboard/lists/LockedListAuthContext.tsx (+29 -0)
apps/web/components/dashboard/lists/LockedListAuthModal.tsx (+124 -0)
apps/web/components/dashboard/lists/LockedListAuthProvider.tsx (+44 -0)
apps/web/components/dashboard/lists/LockedListWrapper.tsx (+68 -0)
📝 apps/web/components/dashboard/sidebar/AllLists.tsx (+5 -2)
apps/web/hooks/useBookmarkPostCreationHook.ts (+75 -0)
packages/db/drizzle/0057_kind_tenebrous.sql (+2 -0)
packages/db/drizzle/meta/0057_snapshot.json (+2147 -0)
📝 packages/db/drizzle/meta/_journal.json (+7 -0)
📝 packages/db/schema.ts (+3 -0)
📝 packages/open-api/karakeep-openapi-spec.json (+20 -1)
📝 packages/shared-react/hooks/bookmarks.ts (+17 -0)
📝 packages/shared/types/lists.ts (+13 -0)

...and 4 more files

📄 Description

Enables users to lock lists, requiring a unique, encrypted password to access, excludes locked list content from homepage.
Closes Karakeep-app/karakeep#1724
Not sure this is perfect, please do review. Worked pretty well for me though.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/karakeep-app/karakeep/pull/1729 **Author:** [@MadMaximusJB](https://github.com/MadMaximusJB) **Created:** 7/12/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (1) - [`8e16e27`](https://github.com/karakeep-app/karakeep/commit/8e16e27dd1b98ea8f66d39f6b386181be32c46aa) Feat: add locked lists feature. Enables users to lock lists, requiring a unique, encrypted password to access, excludes locked list content from homepage. ### 📊 Changes **24 files changed** (+2960 additions, -114 deletions) <details> <summary>View changed files</summary> 📝 `apps/web/app/dashboard/lists/[listId]/page.tsx` (+17 -11) 📝 `apps/web/components/dashboard/UploadDropzone.tsx` (+1 -1) 📝 `apps/web/components/dashboard/bookmarks/EditorCard.tsx` (+1 -1) 📝 `apps/web/components/dashboard/lists/AllListsView.tsx` (+2 -1) 📝 `apps/web/components/dashboard/lists/EditListModal.tsx` (+60 -0) 📝 `apps/web/components/dashboard/lists/ListHeader.tsx` (+2 -1) 📝 `apps/web/components/dashboard/lists/ListOptions.tsx` (+121 -74) ➕ `apps/web/components/dashboard/lists/LockedListAuthContext.tsx` (+29 -0) ➕ `apps/web/components/dashboard/lists/LockedListAuthModal.tsx` (+124 -0) ➕ `apps/web/components/dashboard/lists/LockedListAuthProvider.tsx` (+44 -0) ➕ `apps/web/components/dashboard/lists/LockedListWrapper.tsx` (+68 -0) 📝 `apps/web/components/dashboard/sidebar/AllLists.tsx` (+5 -2) ➕ `apps/web/hooks/useBookmarkPostCreationHook.ts` (+75 -0) ➕ `packages/db/drizzle/0057_kind_tenebrous.sql` (+2 -0) ➕ `packages/db/drizzle/meta/0057_snapshot.json` (+2147 -0) 📝 `packages/db/drizzle/meta/_journal.json` (+7 -0) 📝 `packages/db/schema.ts` (+3 -0) 📝 `packages/open-api/karakeep-openapi-spec.json` (+20 -1) 📝 `packages/shared-react/hooks/bookmarks.ts` (+17 -0) 📝 `packages/shared/types/lists.ts` (+13 -0) _...and 4 more files_ </details> ### 📄 Description Enables users to lock lists, requiring a unique, encrypted password to access, excludes locked list content from homepage. Closes Karakeep-app/karakeep#1724 Not sure this is perfect, please do review. Worked pretty well for me though. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 11:59:37 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/karakeep#1888
No description provided.