[PR #3215] [MERGED] feat: encrypt collab update #5622

Closed
opened 2026-03-23 22:19:34 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3215
Author: @appflowy
Created: 8/16/2023
Status: Merged
Merged: 8/17/2023
Merged by: @appflowy

Base: mainHead: feat/encrypt_collab_update


📝 Commits (10+)

  • 92fae8d feat: implement encrypt and decrypt
  • 4d1ee18 feat: encrypt and decrypt
  • 5d44178 feat: update user profile with encrypt
  • ccdf2b4 chore: store encryption sign
  • e4c38b8 fix: login in setting menu
  • 472f0b1 chore: show encryption account name
  • 69a3da1 chore: Merge branch 'main' into feat/encrypt_collab_update
  • 8fe0822 chore: fix test
  • f091611 ci: fix warnings
  • a47a6e1 test: enable supabase test

📊 Changes

103 files changed (+2824 additions, -904 deletions)

View changed files

📝 .github/workflows/rust_ci.yaml (+19 -2)
📝 frontend/.vscode/launch.json (+1 -1)
📝 frontend/appflowy_flutter/lib/main.dart (+1 -6)
📝 frontend/appflowy_flutter/lib/startup/startup.dart (+8 -0)
frontend/appflowy_flutter/lib/user/application/encrypt_secret_bloc.dart (+106 -0)
📝 frontend/appflowy_flutter/lib/user/application/user_service.dart (+1 -1)
frontend/appflowy_flutter/lib/user/presentation/empty_workspace_screen.dart (+10 -0)
frontend/appflowy_flutter/lib/user/presentation/encrypt_secret_screen.dart (+124 -0)
📝 frontend/appflowy_flutter/lib/user/presentation/folder/folder_widget.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/user/presentation/router.dart (+19 -0)
📝 frontend/appflowy_flutter/lib/user/presentation/sign_in_screen.dart (+9 -8)
📝 frontend/appflowy_flutter/lib/user/presentation/splash_screen.dart (+27 -20)
frontend/appflowy_flutter/lib/workspace/application/settings/cloud_setting_listener.dart (+57 -0)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/setting_supabase_bloc.dart (+55 -40)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_user.dart (+2 -11)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/settings_dialog.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/setting_third_party_login.dart (+32 -24)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_file_customize_location_view.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_user_view.dart (+28 -16)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/sync_setting_view.dart (+147 -21)

...and 80 more files

📄 Description

  1. Support encrypt user data
  2. fix some login bugs

PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 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/AppFlowy-IO/AppFlowy/pull/3215 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 8/16/2023 **Status:** ✅ Merged **Merged:** 8/17/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/encrypt_collab_update` --- ### 📝 Commits (10+) - [`92fae8d`](https://github.com/AppFlowy-IO/AppFlowy/commit/92fae8d7553eb8857e1c46e46f31320d5859593a) feat: implement encrypt and decrypt - [`4d1ee18`](https://github.com/AppFlowy-IO/AppFlowy/commit/4d1ee18e4a41ca08688e3c8bfeff120cc2cebe8c) feat: encrypt and decrypt - [`5d44178`](https://github.com/AppFlowy-IO/AppFlowy/commit/5d44178a7e0d7f926534ad06169b3a2e21e3a8fb) feat: update user profile with encrypt - [`ccdf2b4`](https://github.com/AppFlowy-IO/AppFlowy/commit/ccdf2b4ad5046ebd77bd088e0efa2627f0ef5514) chore: store encryption sign - [`e4c38b8`](https://github.com/AppFlowy-IO/AppFlowy/commit/e4c38b804857d0e3c1605f6a0b43c86ae01e7565) fix: login in setting menu - [`472f0b1`](https://github.com/AppFlowy-IO/AppFlowy/commit/472f0b134c96f5d48681cdfe9211fb3e1277fb66) chore: show encryption account name - [`69a3da1`](https://github.com/AppFlowy-IO/AppFlowy/commit/69a3da153de01103f32800017b41c737ea4f3796) chore: Merge branch 'main' into feat/encrypt_collab_update - [`8fe0822`](https://github.com/AppFlowy-IO/AppFlowy/commit/8fe08227ee3e23c520a1ad32de3dcfc92fea6117) chore: fix test - [`f091611`](https://github.com/AppFlowy-IO/AppFlowy/commit/f09161172b4c8322b2da403c126b11875d00cd02) ci: fix warnings - [`a47a6e1`](https://github.com/AppFlowy-IO/AppFlowy/commit/a47a6e1f56a279cd47582602fa626b80b93c2b55) test: enable supabase test ### 📊 Changes **103 files changed** (+2824 additions, -904 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/rust_ci.yaml` (+19 -2) 📝 `frontend/.vscode/launch.json` (+1 -1) 📝 `frontend/appflowy_flutter/lib/main.dart` (+1 -6) 📝 `frontend/appflowy_flutter/lib/startup/startup.dart` (+8 -0) ➕ `frontend/appflowy_flutter/lib/user/application/encrypt_secret_bloc.dart` (+106 -0) 📝 `frontend/appflowy_flutter/lib/user/application/user_service.dart` (+1 -1) ➕ `frontend/appflowy_flutter/lib/user/presentation/empty_workspace_screen.dart` (+10 -0) ➕ `frontend/appflowy_flutter/lib/user/presentation/encrypt_secret_screen.dart` (+124 -0) 📝 `frontend/appflowy_flutter/lib/user/presentation/folder/folder_widget.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/user/presentation/router.dart` (+19 -0) 📝 `frontend/appflowy_flutter/lib/user/presentation/sign_in_screen.dart` (+9 -8) 📝 `frontend/appflowy_flutter/lib/user/presentation/splash_screen.dart` (+27 -20) ➕ `frontend/appflowy_flutter/lib/workspace/application/settings/cloud_setting_listener.dart` (+57 -0) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/setting_supabase_bloc.dart` (+55 -40) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_user.dart` (+2 -11) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/settings_dialog.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/setting_third_party_login.dart` (+32 -24) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_file_customize_location_view.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_user_view.dart` (+28 -16) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/sync_setting_view.dart` (+147 -21) _...and 80 more files_ </details> ### 📄 Description 1. Support encrypt user data 2. fix some login bugs #### PR Checklist - [ ] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:19:34 +00: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
AppFlowy-IO/AppFlowy#5622
No description provided.