[PR #4899] [MERGED] feat: support-OAuth-login #6524

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4899
Author: @qinluhe
Created: 3/14/2024
Status: Merged
Merged: 3/15/2024
Merged by: @appflowy

Base: mainHead: feat/support-oauth-login


📝 Commits (3)

  • c410c54 feat: support-OAuth-login
  • ff90e95 fix: modified ubuntu version and devtool
  • 2586b88 fix: ts lint error

📊 Changes

35 files changed (+861 additions, -198 deletions)

View changed files

📝 .github/workflows/tauri_ci.yaml (+5 -4)
📝 .github/workflows/tauri_release.yml (+5 -5)
📝 frontend/appflowy_tauri/.gitignore (+3 -1)
📝 frontend/appflowy_tauri/src-tauri/.gitignore (+1 -1)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+93 -1)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+3 -0)
frontend/appflowy_tauri/src-tauri/Info.plist (+19 -0)
frontend/appflowy_tauri/src-tauri/env.development (+4 -0)
frontend/appflowy_tauri/src-tauri/env.production (+4 -0)
📝 frontend/appflowy_tauri/src-tauri/src/init.rs (+26 -2)
📝 frontend/appflowy_tauri/src-tauri/src/main.rs (+21 -2)
📝 frontend/appflowy_tauri/src-tauri/tauri.conf.json (+1 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/AppMain.hooks.ts (+5 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/AppMain.tsx (+2 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/application/folder/workspace.service.ts (+8 -18)
📝 frontend/appflowy_tauri/src/appflowy_app/application/user/auth.service.ts (+59 -13)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/devtool/AppFlowyDevTool.tsx (+61 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/devtool/ManualSignInDialog.tsx (+114 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/login/LoginButtonGroup.tsx (+0 -26)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/login/index.ts (+0 -1)

...and 15 more files

📄 Description

Feature Preview

https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/29d421fe-6612-47b2-a13b-a6b73a816dff

  • Support third-party login from Google, Github, and Discord

https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/db28f9dd-f866-4230-9923-bbc32c888f7a

  • Support front-end developer tools to achieve quick login

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/4899 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 3/14/2024 **Status:** ✅ Merged **Merged:** 3/15/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/support-oauth-login` --- ### 📝 Commits (3) - [`c410c54`](https://github.com/AppFlowy-IO/AppFlowy/commit/c410c54f504039e25d33edb9c7757f828b361522) feat: support-OAuth-login - [`ff90e95`](https://github.com/AppFlowy-IO/AppFlowy/commit/ff90e95a859d4c6f1aef26fda2fa7fe2d00ae4ac) fix: modified ubuntu version and devtool - [`2586b88`](https://github.com/AppFlowy-IO/AppFlowy/commit/2586b8871d66f056b112d6dee2ec6c288a4a1b7f) fix: ts lint error ### 📊 Changes **35 files changed** (+861 additions, -198 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/tauri_ci.yaml` (+5 -4) 📝 `.github/workflows/tauri_release.yml` (+5 -5) 📝 `frontend/appflowy_tauri/.gitignore` (+3 -1) 📝 `frontend/appflowy_tauri/src-tauri/.gitignore` (+1 -1) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+93 -1) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+3 -0) ➕ `frontend/appflowy_tauri/src-tauri/Info.plist` (+19 -0) ➕ `frontend/appflowy_tauri/src-tauri/env.development` (+4 -0) ➕ `frontend/appflowy_tauri/src-tauri/env.production` (+4 -0) 📝 `frontend/appflowy_tauri/src-tauri/src/init.rs` (+26 -2) 📝 `frontend/appflowy_tauri/src-tauri/src/main.rs` (+21 -2) 📝 `frontend/appflowy_tauri/src-tauri/tauri.conf.json` (+1 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/AppMain.hooks.ts` (+5 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/AppMain.tsx` (+2 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/application/folder/workspace.service.ts` (+8 -18) 📝 `frontend/appflowy_tauri/src/appflowy_app/application/user/auth.service.ts` (+59 -13) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/devtool/AppFlowyDevTool.tsx` (+61 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/devtool/ManualSignInDialog.tsx` (+114 -0) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/login/LoginButtonGroup.tsx` (+0 -26) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/login/index.ts` (+0 -1) _...and 15 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 https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/29d421fe-6612-47b2-a13b-a6b73a816dff - [x] Support third-party login from Google, Github, and Discord https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/db28f9dd-f866-4230-9923-bbc32c888f7a - [x] Support front-end developer tools to achieve quick login <!--- 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. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:23: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#6524
No description provided.