[PR #7823] [MERGED] chore: use user auth type #8141

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/7823
Author: @appflowy
Created: 4/24/2025
Status: Merged
Merged: 4/24/2025
Merged by: @appflowy

Base: mainHead: use_user_auth_type


📝 Commits (5)

  • 718c5ad chore: use auth type instead of workspace auth type
  • 76b9cbd Merge branch 'main' into use_user_auth_type
  • 9e5a6df chore: update template
  • c9ca6c6 chore: update template
  • dbda197 chore: update client api

📊 Changes

24 files changed (+197 additions, -86 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/mobile/presentation/setting/user_session_setting_group.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/startup/tasks/deeplink/login_deeplink_handler.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/user/application/auth/af_cloud_mock_auth_service.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/user/application/password/password_bloc.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/user/presentation/anon_user.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_account_view.dart (+15 -15)
📝 frontend/appflowy_flutter/macos/Podfile.lock (+23 -23)
📝 frontend/rust-lib/Cargo.lock (+51 -17)
📝 frontend/rust-lib/Cargo.toml (+3 -2)
📝 frontend/rust-lib/event-integration-test/src/user_event.rs (+1 -1)
📝 frontend/rust-lib/event-integration-test/tests/user/af_cloud_test/workspace_test.rs (+2 -2)
📝 frontend/rust-lib/flowy-folder/src/entities/view.rs (+4 -8)
📝 frontend/rust-lib/flowy-server-pub/Cargo.toml (+2 -2)
📝 frontend/rust-lib/flowy-server-pub/src/lib.rs (+1 -0)
📝 frontend/rust-lib/flowy-server/Cargo.toml (+1 -3)
📝 frontend/rust-lib/flowy-server/src/local_server/impls/user.rs (+38 -1)
📝 frontend/rust-lib/flowy-server/src/local_server/mod.rs (+1 -0)
frontend/rust-lib/flowy-server/src/local_server/template/create_workspace.rs (+40 -0)
frontend/rust-lib/flowy-server/src/local_server/template/mod.rs (+1 -0)
📝 frontend/rust-lib/flowy-user/src/entities/auth.rs (+1 -1)

...and 4 more files

📄 Description

Feature Preview


PR Checklist

  • My code adheres to AppFlowy's Conventions
  • 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.

Summary by Sourcery

Chores:

  • Refactor authentication type references from 'workspaceAuthType' to 'userAuthType' in multiple files

🔄 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/7823 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 4/24/2025 **Status:** ✅ Merged **Merged:** 4/24/2025 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `use_user_auth_type` --- ### 📝 Commits (5) - [`718c5ad`](https://github.com/AppFlowy-IO/AppFlowy/commit/718c5ad16f51c62a4a52311fb77c47db3458a0dd) chore: use auth type instead of workspace auth type - [`76b9cbd`](https://github.com/AppFlowy-IO/AppFlowy/commit/76b9cbd44673c26f29523a95aa844e742184ac1a) Merge branch 'main' into use_user_auth_type - [`9e5a6df`](https://github.com/AppFlowy-IO/AppFlowy/commit/9e5a6df52c82c4282c6368f274c1174542e1849e) chore: update template - [`c9ca6c6`](https://github.com/AppFlowy-IO/AppFlowy/commit/c9ca6c6cc82a3ea39acadc18b27c2b774f9d58e1) chore: update template - [`dbda197`](https://github.com/AppFlowy-IO/AppFlowy/commit/dbda1972d1642da093fe3752d4567fe2179125fc) chore: update client api ### 📊 Changes **24 files changed** (+197 additions, -86 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/mobile/presentation/setting/user_session_setting_group.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/startup/tasks/deeplink/login_deeplink_handler.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/user/application/auth/af_cloud_mock_auth_service.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/user/application/password/password_bloc.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/user/presentation/anon_user.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_account_view.dart` (+15 -15) 📝 `frontend/appflowy_flutter/macos/Podfile.lock` (+23 -23) 📝 `frontend/rust-lib/Cargo.lock` (+51 -17) 📝 `frontend/rust-lib/Cargo.toml` (+3 -2) 📝 `frontend/rust-lib/event-integration-test/src/user_event.rs` (+1 -1) 📝 `frontend/rust-lib/event-integration-test/tests/user/af_cloud_test/workspace_test.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-folder/src/entities/view.rs` (+4 -8) 📝 `frontend/rust-lib/flowy-server-pub/Cargo.toml` (+2 -2) 📝 `frontend/rust-lib/flowy-server-pub/src/lib.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-server/Cargo.toml` (+1 -3) 📝 `frontend/rust-lib/flowy-server/src/local_server/impls/user.rs` (+38 -1) 📝 `frontend/rust-lib/flowy-server/src/local_server/mod.rs` (+1 -0) ➕ `frontend/rust-lib/flowy-server/src/local_server/template/create_workspace.rs` (+40 -0) ➕ `frontend/rust-lib/flowy-server/src/local_server/template/mod.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-user/src/entities/auth.rs` (+1 -1) _...and 4 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] 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. ## Summary by Sourcery Chores: - Refactor authentication type references from 'workspaceAuthType' to 'userAuthType' in multiple files --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:22:48 +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#8141
No description provided.