[PR #589] [MERGED] Refactor: move user data model to flowy-user crate #4216

Closed
opened 2026-03-23 21:36:49 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/589
Author: @appflowy
Created: 7/4/2022
Status: Merged
Merged: 7/4/2022
Merged by: @appflowy

Base: mainHead: refactor/user_data_model


📝 Commits (6)

  • 7849963 chore: move entities from flowy-folder-data-model to flowy-folder crate
  • e5f35e4 chore: fix import path
  • e85606a chore: fix unit test
  • 8963561 chore: rm flowy-user-data-model crate
  • cfadf42 chore: fix import path
  • 91418df chore: fix test errors

📊 Changes

135 files changed (+492 additions, -564 deletions)

View changed files

📝 frontend/app_flowy/lib/plugin/plugin.dart (+1 -1)
📝 frontend/app_flowy/lib/startup/deps_resolver.dart (+3 -3)
📝 frontend/app_flowy/lib/user/application/auth_service.dart (+1 -1)
📝 frontend/app_flowy/lib/user/application/sign_in_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/user/application/sign_up_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/user/application/user_listener.dart (+2 -2)
📝 frontend/app_flowy/lib/user/application/user_service.dart (+2 -2)
📝 frontend/app_flowy/lib/user/application/user_settings_service.dart (+1 -1)
📝 frontend/app_flowy/lib/user/domain/auth_state.dart (+1 -1)
📝 frontend/app_flowy/lib/user/presentation/router.dart (+2 -2)
📝 frontend/app_flowy/lib/user/presentation/sign_in_screen.dart (+1 -1)
📝 frontend/app_flowy/lib/user/presentation/sign_up_screen.dart (+1 -1)
📝 frontend/app_flowy/lib/user/presentation/skip_log_in_screen.dart (+2 -2)
📝 frontend/app_flowy/lib/user/presentation/welcome_screen.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/app/app_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/app/app_listener.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/app/app_service.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/appearance.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/application/doc/doc_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/doc/doc_service.dart (+1 -1)

...and 80 more files

📄 Description

  1. mv entities from flowy-user-data-model to flowy-user crate.
  2. delete flowy-user-data-model crate

🔄 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/589 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 7/4/2022 **Status:** ✅ Merged **Merged:** 7/4/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `refactor/user_data_model` --- ### 📝 Commits (6) - [`7849963`](https://github.com/AppFlowy-IO/AppFlowy/commit/784996368b40071a66d433ac83a2900e0e4d6025) chore: move entities from flowy-folder-data-model to flowy-folder crate - [`e5f35e4`](https://github.com/AppFlowy-IO/AppFlowy/commit/e5f35e46ca0e349273a142ae621e4a72fe84b979) chore: fix import path - [`e85606a`](https://github.com/AppFlowy-IO/AppFlowy/commit/e85606ac21175fcda9808c263fdfb3860330a629) chore: fix unit test - [`8963561`](https://github.com/AppFlowy-IO/AppFlowy/commit/8963561355da9d1b4605447fd907c8a483b4d38b) chore: rm flowy-user-data-model crate - [`cfadf42`](https://github.com/AppFlowy-IO/AppFlowy/commit/cfadf42fe3d7e88bf9e783c6132caf08b7fbb1a6) chore: fix import path - [`91418df`](https://github.com/AppFlowy-IO/AppFlowy/commit/91418df9404591260d282d2d9edd06e9586759fd) chore: fix test errors ### 📊 Changes **135 files changed** (+492 additions, -564 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugin/plugin.dart` (+1 -1) 📝 `frontend/app_flowy/lib/startup/deps_resolver.dart` (+3 -3) 📝 `frontend/app_flowy/lib/user/application/auth_service.dart` (+1 -1) 📝 `frontend/app_flowy/lib/user/application/sign_in_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/user/application/sign_up_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/user/application/user_listener.dart` (+2 -2) 📝 `frontend/app_flowy/lib/user/application/user_service.dart` (+2 -2) 📝 `frontend/app_flowy/lib/user/application/user_settings_service.dart` (+1 -1) 📝 `frontend/app_flowy/lib/user/domain/auth_state.dart` (+1 -1) 📝 `frontend/app_flowy/lib/user/presentation/router.dart` (+2 -2) 📝 `frontend/app_flowy/lib/user/presentation/sign_in_screen.dart` (+1 -1) 📝 `frontend/app_flowy/lib/user/presentation/sign_up_screen.dart` (+1 -1) 📝 `frontend/app_flowy/lib/user/presentation/skip_log_in_screen.dart` (+2 -2) 📝 `frontend/app_flowy/lib/user/presentation/welcome_screen.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/app/app_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/app/app_listener.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/app/app_service.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/appearance.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/application/doc/doc_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/doc/doc_service.dart` (+1 -1) _...and 80 more files_ </details> ### 📄 Description 1. mv entities from flowy-user-data-model to flowy-user crate. 2. delete flowy-user-data-model crate --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:36:49 +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#4216
No description provided.