[PR #6518] [MERGED] feat: custom domain #7436

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6518
Author: @speed2exe
Created: 10/9/2024
Status: Merged
Merged: 10/23/2024
Merged by: @LucasXu0

Base: mainHead: feat/custom-domain


📝 Commits (10+)

  • a7470ae feat: api for namespace setting
  • 3a42801 Merge branch 'main' into feat/custom-domain
  • 53701c6 feat: add publish timestamp
  • 27eb1e9 feat: update api
  • ea79dbf Merge branch 'main' into feat/custom-domain
  • aebeebe Merge branch 'main' into feat/custom-domain
  • 4b67f0f chore: update proto
  • 16ca7d2 feat: add link impl for appflowy cloud
  • afaeb6e chore: merge with main
  • 66c828e feat: impl set and get default view for workspace

📊 Changes

19 files changed (+430 additions, -81 deletions)

View changed files

📝 frontend/appflowy_flutter/pubspec.lock (+6 -6)
📝 frontend/rust-lib/Cargo.lock (+110 -33)
📝 frontend/rust-lib/Cargo.toml (+10 -10)
📝 frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs (+36 -3)
📝 frontend/rust-lib/flowy-error/src/code.rs (+9 -0)
📝 frontend/rust-lib/flowy-folder-pub/Cargo.toml (+1 -0)
📝 frontend/rust-lib/flowy-folder-pub/src/cloud.rs (+14 -2)
📝 frontend/rust-lib/flowy-folder-pub/src/entities.rs (+0 -8)
📝 frontend/rust-lib/flowy-folder/Cargo.toml (+1 -0)
📝 frontend/rust-lib/flowy-folder/src/entities/icon.rs (+19 -0)
📝 frontend/rust-lib/flowy-folder/src/entities/publish.rs (+58 -5)
📝 frontend/rust-lib/flowy-folder/src/entities/view.rs (+12 -0)
📝 frontend/rust-lib/flowy-folder/src/event_handler.rs (+36 -0)
📝 frontend/rust-lib/flowy-folder/src/event_map.rs (+12 -0)
📝 frontend/rust-lib/flowy-folder/src/manager.rs (+36 -3)
📝 frontend/rust-lib/flowy-server/src/af_cloud/impls/chat.rs (+3 -1)
📝 frontend/rust-lib/flowy-server/src/af_cloud/impls/folder.rs (+43 -7)
📝 frontend/rust-lib/flowy-server/src/local_server/impls/folder.rs (+23 -2)
📝 frontend/rust-lib/flowy-server/src/supabase/api/folder.rs (+1 -1)

📄 Description

No description provided


🔄 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/6518 **Author:** [@speed2exe](https://github.com/speed2exe) **Created:** 10/9/2024 **Status:** ✅ Merged **Merged:** 10/23/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `feat/custom-domain` --- ### 📝 Commits (10+) - [`a7470ae`](https://github.com/AppFlowy-IO/AppFlowy/commit/a7470ae65e2506728557f0bb36cba5aee69c62b7) feat: api for namespace setting - [`3a42801`](https://github.com/AppFlowy-IO/AppFlowy/commit/3a42801a18840dcf1f0446a9ee175aead1cd5e53) Merge branch 'main' into feat/custom-domain - [`53701c6`](https://github.com/AppFlowy-IO/AppFlowy/commit/53701c64a719fe26a638ff60bbb0462f1ebc792a) feat: add publish timestamp - [`27eb1e9`](https://github.com/AppFlowy-IO/AppFlowy/commit/27eb1e97107802f37fb225de4257cdc9bcdfee41) feat: update api - [`ea79dbf`](https://github.com/AppFlowy-IO/AppFlowy/commit/ea79dbfb384b51f1665a0b35be80440c5c1fe4bd) Merge branch 'main' into feat/custom-domain - [`aebeebe`](https://github.com/AppFlowy-IO/AppFlowy/commit/aebeebee392d630480b59f2546f2a1fafce0ef8d) Merge branch 'main' into feat/custom-domain - [`4b67f0f`](https://github.com/AppFlowy-IO/AppFlowy/commit/4b67f0fca551c2edafe3e7d37d3372ec182ca4c4) chore: update proto - [`16ca7d2`](https://github.com/AppFlowy-IO/AppFlowy/commit/16ca7d202ffa8a9096cac8a0771e99414ac00543) feat: add link impl for appflowy cloud - [`afaeb6e`](https://github.com/AppFlowy-IO/AppFlowy/commit/afaeb6e8f48697c14d58e11b4938df2d43a03ff0) chore: merge with main - [`66c828e`](https://github.com/AppFlowy-IO/AppFlowy/commit/66c828e820ae037962d8ba909cfcd67fda155cbf) feat: impl set and get default view for workspace ### 📊 Changes **19 files changed** (+430 additions, -81 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/pubspec.lock` (+6 -6) 📝 `frontend/rust-lib/Cargo.lock` (+110 -33) 📝 `frontend/rust-lib/Cargo.toml` (+10 -10) 📝 `frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs` (+36 -3) 📝 `frontend/rust-lib/flowy-error/src/code.rs` (+9 -0) 📝 `frontend/rust-lib/flowy-folder-pub/Cargo.toml` (+1 -0) 📝 `frontend/rust-lib/flowy-folder-pub/src/cloud.rs` (+14 -2) 📝 `frontend/rust-lib/flowy-folder-pub/src/entities.rs` (+0 -8) 📝 `frontend/rust-lib/flowy-folder/Cargo.toml` (+1 -0) 📝 `frontend/rust-lib/flowy-folder/src/entities/icon.rs` (+19 -0) 📝 `frontend/rust-lib/flowy-folder/src/entities/publish.rs` (+58 -5) 📝 `frontend/rust-lib/flowy-folder/src/entities/view.rs` (+12 -0) 📝 `frontend/rust-lib/flowy-folder/src/event_handler.rs` (+36 -0) 📝 `frontend/rust-lib/flowy-folder/src/event_map.rs` (+12 -0) 📝 `frontend/rust-lib/flowy-folder/src/manager.rs` (+36 -3) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/impls/chat.rs` (+3 -1) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/impls/folder.rs` (+43 -7) 📝 `frontend/rust-lib/flowy-server/src/local_server/impls/folder.rs` (+23 -2) 📝 `frontend/rust-lib/flowy-server/src/supabase/api/folder.rs` (+1 -1) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:19:36 +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#7436
No description provided.