[PR #541] [CLOSED] Need a way to change email address of account #136 #1646

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

📋 Pull Request Information

Original PR: https://github.com/karakeep-app/karakeep/pull/541
Author: @kamtschatka
Created: 10/15/2024
Status: Closed

Base: mainHead: change-email


📝 Commits (10+)

  • 9f26247 Need a way to change email address of account #136
  • f9c8ba6 fix(web): Fix slowness in loading the all tags UI. Fixes #382 (#390)
  • 71b85bf fix(web): Fix profile option icon in mobile layouts
  • 4c618e6 fix(web): Fix settings tab overflow on mobile layouts
  • 0d35712 fix: Add support for importing notes from the hoarder export
  • 35ca4bb docs: Release the 0.18 docs
  • 42e88dc fix(mobile): Improve connection testing accuracy
  • 00b43f5 release(mobile): Bump mobile version to 1.6.4
  • 11735c5 fix(web): Single linebreaks are lost when viewing textnote card. Fixes #549 (#551)
  • 28ab775 chore: Adding issue templates (#546)

📊 Changes

155 files changed (+9179 additions, -2576 deletions)

View changed files

.github/ISSUE_TEMPLATE/bug_report.yml (+61 -0)
.github/ISSUE_TEMPLATE/feature_request.yml (+46 -0)
📝 .github/workflows/ci.yml (+25 -0)
📝 README.md (+1 -0)
📝 apps/cli/src/commands/tags.ts (+2 -2)
📝 apps/mobile/app.json (+3 -3)
apps/mobile/app/dashboard/bookmarks/[slug].tsx (+317 -0)
📝 apps/mobile/app/test-connection.tsx (+19 -2)
📝 apps/mobile/components/bookmarks/BookmarkCard.tsx (+11 -10)
📝 apps/mobile/components/bookmarks/ViewBookmarkModal.tsx (+3 -141)
📝 apps/mobile/components/ui/CustomSafeAreaView.tsx (+4 -1)
📝 apps/mobile/package.json (+1 -0)
📝 apps/web/app/api/assets/[assetId]/route.ts (+26 -6)
apps/web/app/api/v1/bookmarks/[bookmarkId]/lists/route.ts (+18 -0)
apps/web/app/api/v1/bookmarks/[bookmarkId]/route.ts (+50 -0)
apps/web/app/api/v1/bookmarks/[bookmarkId]/tags/route.ts (+45 -0)
apps/web/app/api/v1/bookmarks/route.ts (+37 -0)
apps/web/app/api/v1/lists/[listId]/bookmarks/[bookmarkId]/route.ts (+35 -0)
apps/web/app/api/v1/lists/[listId]/bookmarks/route.ts (+18 -0)
apps/web/app/api/v1/lists/[listId]/route.ts (+55 -0)

...and 80 more files

📄 Description

added a way to change the email address for local users added another check to not show the change password/email UI to users with OAuth


🔄 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/541 **Author:** [@kamtschatka](https://github.com/kamtschatka) **Created:** 10/15/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `change-email` --- ### 📝 Commits (10+) - [`9f26247`](https://github.com/karakeep-app/karakeep/commit/9f262475303c1801c978a562300ec39643773347) Need a way to change email address of account #136 - [`f9c8ba6`](https://github.com/karakeep-app/karakeep/commit/f9c8ba69adec1962ef9f9c4bb4be3a5998a7fe89) fix(web): Fix slowness in loading the all tags UI. Fixes #382 (#390) - [`71b85bf`](https://github.com/karakeep-app/karakeep/commit/71b85bf572d2652a88f2ccdf0c037684a61c8f8c) fix(web): Fix profile option icon in mobile layouts - [`4c618e6`](https://github.com/karakeep-app/karakeep/commit/4c618e6318a74cd374d5c09a1fa61991c2e7c69d) fix(web): Fix settings tab overflow on mobile layouts - [`0d35712`](https://github.com/karakeep-app/karakeep/commit/0d357123b65ef2f0b226ff326526687144a527f7) fix: Add support for importing notes from the hoarder export - [`35ca4bb`](https://github.com/karakeep-app/karakeep/commit/35ca4bb6e285d909becf2cb5982b4f041cfe9dc9) docs: Release the 0.18 docs - [`42e88dc`](https://github.com/karakeep-app/karakeep/commit/42e88dc48ec4fc205d9f4d4d2587deb0a9de3eb1) fix(mobile): Improve connection testing accuracy - [`00b43f5`](https://github.com/karakeep-app/karakeep/commit/00b43f548b796a1e20b85642595f79d1c8b13eb2) release(mobile): Bump mobile version to 1.6.4 - [`11735c5`](https://github.com/karakeep-app/karakeep/commit/11735c5e5a94195cf5c04610836f96c9fa939875) fix(web): Single linebreaks are lost when viewing textnote card. Fixes #549 (#551) - [`28ab775`](https://github.com/karakeep-app/karakeep/commit/28ab77531e762e78eb41483e9a5d8c2e0ccbb7bb) chore: Adding issue templates (#546) ### 📊 Changes **155 files changed** (+9179 additions, -2576 deletions) <details> <summary>View changed files</summary> ➕ `.github/ISSUE_TEMPLATE/bug_report.yml` (+61 -0) ➕ `.github/ISSUE_TEMPLATE/feature_request.yml` (+46 -0) 📝 `.github/workflows/ci.yml` (+25 -0) 📝 `README.md` (+1 -0) 📝 `apps/cli/src/commands/tags.ts` (+2 -2) 📝 `apps/mobile/app.json` (+3 -3) ➕ `apps/mobile/app/dashboard/bookmarks/[slug].tsx` (+317 -0) 📝 `apps/mobile/app/test-connection.tsx` (+19 -2) 📝 `apps/mobile/components/bookmarks/BookmarkCard.tsx` (+11 -10) 📝 `apps/mobile/components/bookmarks/ViewBookmarkModal.tsx` (+3 -141) 📝 `apps/mobile/components/ui/CustomSafeAreaView.tsx` (+4 -1) 📝 `apps/mobile/package.json` (+1 -0) 📝 `apps/web/app/api/assets/[assetId]/route.ts` (+26 -6) ➕ `apps/web/app/api/v1/bookmarks/[bookmarkId]/lists/route.ts` (+18 -0) ➕ `apps/web/app/api/v1/bookmarks/[bookmarkId]/route.ts` (+50 -0) ➕ `apps/web/app/api/v1/bookmarks/[bookmarkId]/tags/route.ts` (+45 -0) ➕ `apps/web/app/api/v1/bookmarks/route.ts` (+37 -0) ➕ `apps/web/app/api/v1/lists/[listId]/bookmarks/[bookmarkId]/route.ts` (+35 -0) ➕ `apps/web/app/api/v1/lists/[listId]/bookmarks/route.ts` (+18 -0) ➕ `apps/web/app/api/v1/lists/[listId]/route.ts` (+55 -0) _...and 80 more files_ </details> ### 📄 Description added a way to change the email address for local users added another check to not show the change password/email UI to users with OAuth --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 11:58:33 +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#1646
No description provided.