[PR #7003] [CLOSED] fix: update delete trash endpoint #7682

Closed
opened 2026-03-23 23:20:44 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/7003
Author: @khorshuheng
Created: 12/18/2024
Status: Closed

Base: feat/support-document-editingHead: update-delete-trash-endpoint


📝 Commits (10+)

📊 Changes

244 files changed (+11115 additions, -2444 deletions)

View changed files

📝 .github/workflows/android_ci.yaml.bak (+1 -1)
📝 .github/workflows/ios_ci.yaml (+1 -1)
📝 .github/workflows/release.yml (+4 -4)
📝 .github/workflows/rust_coverage.yml (+1 -1)
📝 .github/workflows/tauri_ci.yaml (+1 -1)
📝 .github/workflows/tauri_release.yml (+1 -1)
📝 CHANGELOG.md (+23 -1)
📝 codemagic.yaml (+1 -1)
📝 frontend/appflowy_flutter/android/app/src/main/AndroidManifest.xml (+0 -4)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_find_menu_test.dart (+0 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_cover_image_test.dart (+2 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_image_block_test.dart (+0 -7)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_inline_math_equation_test.dart (+50 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_inline_page_test.dart (+14 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_simple_table_test.dart (+220 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/settings/sign_in_page_settings_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/sidebar/sidebar_icon_test.dart (+154 -68)
📝 frontend/appflowy_flutter/integration_test/desktop/sidebar/sidebar_view_item_test.dart (+6 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/uncategorized/code_block_language_selector_test.dart (+24 -8)
📝 frontend/appflowy_flutter/integration_test/mobile/document/document_test_runner.dart (+2 -0)

...and 80 more files

📄 Description

Fix the delete trash API endpoint, which was introduced in version 0.8.10 of AppFlowy Cloud.

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.

🔄 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/7003 **Author:** [@khorshuheng](https://github.com/khorshuheng) **Created:** 12/18/2024 **Status:** ❌ Closed **Base:** `feat/support-document-editing` ← **Head:** `update-delete-trash-endpoint` --- ### 📝 Commits (10+) - [`67e93a1`](https://github.com/AppFlowy-IO/AppFlowy/commit/67e93a12e6f75b1e0b440d4f860bdf053718a802) fix: inline grid launch review (#6992) - [`792eec7`](https://github.com/AppFlowy-IO/AppFlowy/commit/792eec7d4bbbc686a4b7dc331f03aa370226de3b) chore(i18n): update de-De translations (#6984) - [`d74e7b6`](https://github.com/AppFlowy-IO/AppFlowy/commit/d74e7b63ca535358c15bf51cd08581adb9bd56bd) chore(i18n): update fr-FR translations 🐦 (#6987) - [`f307300`](https://github.com/AppFlowy-IO/AppFlowy/commit/f307300b96a24575c24006f99649f042453733aa) fix: simple table issues (#6985) - [`381d946`](https://github.com/AppFlowy-IO/AppFlowy/commit/381d94680846eecf15cee23360833dbe01fa2bf4) chore: filter out spaces from mention page (#6994) - [`867d515`](https://github.com/AppFlowy-IO/AppFlowy/commit/867d515a35ebce752e9c16e7c0b7a0f51a826a64) feat: support readonly table (#6997) - [`0689f4e`](https://github.com/AppFlowy-IO/AppFlowy/commit/0689f4e7e1bc14d62109d92e43200051500bc312) chore: bump version 0.7.8 (#7000) - [`804395d`](https://github.com/AppFlowy-IO/AppFlowy/commit/804395d0e14c6cb38ed366233d209499ce40fc92) fix: update delete trash endpoint - [`9d53f75`](https://github.com/AppFlowy-IO/AppFlowy/commit/9d53f758d45c41903b7ad7fe49c14f21f70dfaf7) chore: bump client api 088 (#7004) - [`b966e3e`](https://github.com/AppFlowy-IO/AppFlowy/commit/b966e3ea07838d43dbb8827f9b3b46a0c48fc661) feat: select sources for ai prompt (#6975) ### 📊 Changes **244 files changed** (+11115 additions, -2444 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/android_ci.yaml.bak` (+1 -1) 📝 `.github/workflows/ios_ci.yaml` (+1 -1) 📝 `.github/workflows/release.yml` (+4 -4) 📝 `.github/workflows/rust_coverage.yml` (+1 -1) 📝 `.github/workflows/tauri_ci.yaml` (+1 -1) 📝 `.github/workflows/tauri_release.yml` (+1 -1) 📝 `CHANGELOG.md` (+23 -1) 📝 `codemagic.yaml` (+1 -1) 📝 `frontend/appflowy_flutter/android/app/src/main/AndroidManifest.xml` (+0 -4) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_find_menu_test.dart` (+0 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_cover_image_test.dart` (+2 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_image_block_test.dart` (+0 -7) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_inline_math_equation_test.dart` (+50 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_inline_page_test.dart` (+14 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_simple_table_test.dart` (+220 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/settings/sign_in_page_settings_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/sidebar/sidebar_icon_test.dart` (+154 -68) 📝 `frontend/appflowy_flutter/integration_test/desktop/sidebar/sidebar_view_item_test.dart` (+6 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/uncategorized/code_block_language_selector_test.dart` (+24 -8) 📝 `frontend/appflowy_flutter/integration_test/mobile/document/document_test_runner.dart` (+2 -0) _...and 80 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. --> Fix the delete trash API endpoint, which was introduced in version 0.8.10 of AppFlowy Cloud. ### 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 - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [x] 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 23:20:44 +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#7682
No description provided.