[PR #2914] [CLOSED] chore: move environments firebase things to hoppscotch-web #4137

Closed
opened 2026-03-17 01:42:05 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2914
Author: @amk-dev
Created: 2/1/2023
Status: Closed

Base: stagingHead: chore/move-enviornments


📝 Commits (10+)

  • 64752a6 chore: move auth out of common
  • f219cec fix: error on GQLClient waiting on probable user when none exists
  • 4ec5f20 fix: issue with subscriptions not firing correctly
  • a374148 refactor: move platform into folder with proper isolation
  • 7457876 chore: add doc comments for platform auth
  • 382dbc2 chore: move profile.vue auth related usages to use platform
  • 58dc5f4 chore: move Shortcodes.vue and UserDelete.vue auth related usages to use platform
  • 72a43ab chore: add emailVerified field to HoppUser
  • edf5b8e chore: add magic link validation function to platform auth
  • b3e022c chore: upgrade enter.vue to use platform auth

📊 Changes

40 files changed (+1005 additions, -794 deletions)

View changed files

📝 packages/hoppscotch-common/src/components/app/DeveloperOptions.vue (+4 -6)
📝 packages/hoppscotch-common/src/components/app/Footer.vue (+5 -2)
📝 packages/hoppscotch-common/src/components/app/Header.vue (+5 -3)
📝 packages/hoppscotch-common/src/components/collections/ChooseType.vue (+8 -3)
📝 packages/hoppscotch-common/src/components/collections/ImportExport.vue (+5 -2)
📝 packages/hoppscotch-common/src/components/collections/graphql/ImportExport.vue (+5 -2)
📝 packages/hoppscotch-common/src/components/collections/index.vue (+5 -2)
📝 packages/hoppscotch-common/src/components/environments/ChooseType.vue (+8 -3)
📝 packages/hoppscotch-common/src/components/environments/ImportExport.vue (+5 -2)
📝 packages/hoppscotch-common/src/components/environments/index.vue (+5 -2)
📝 packages/hoppscotch-common/src/components/firebase/Login.vue (+31 -45)
📝 packages/hoppscotch-common/src/components/firebase/Logout.vue (+2 -2)
📝 packages/hoppscotch-common/src/components/profile/Shortcodes.vue (+8 -3)
📝 packages/hoppscotch-common/src/components/profile/UserDelete.vue (+2 -2)
📝 packages/hoppscotch-common/src/components/teams/index.vue (+3 -1)
📝 packages/hoppscotch-common/src/composables/auth.ts (+21 -30)
📝 packages/hoppscotch-common/src/helpers/backend/GQLClient.ts (+43 -41)
📝 packages/hoppscotch-common/src/helpers/fb/analytics.ts (+4 -2)
packages/hoppscotch-common/src/helpers/fb/auth.ts (+0 -434)
📝 packages/hoppscotch-common/src/helpers/fb/collections.ts (+13 -8)

...and 20 more files

📄 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/hoppscotch/hoppscotch/pull/2914 **Author:** [@amk-dev](https://github.com/amk-dev) **Created:** 2/1/2023 **Status:** ❌ Closed **Base:** `staging` ← **Head:** `chore/move-enviornments` --- ### 📝 Commits (10+) - [`64752a6`](https://github.com/hoppscotch/hoppscotch/commit/64752a658e053a32d901b126084be84bdf69aa79) chore: move auth out of common - [`f219cec`](https://github.com/hoppscotch/hoppscotch/commit/f219cece02b0ef9ecd46d532d84ad66067e6e9a2) fix: error on GQLClient waiting on probable user when none exists - [`4ec5f20`](https://github.com/hoppscotch/hoppscotch/commit/4ec5f20f930a460c354de4b638bb7915a4aefe29) fix: issue with subscriptions not firing correctly - [`a374148`](https://github.com/hoppscotch/hoppscotch/commit/a374148f59e2155f7a63a77f97431562562c8fd7) refactor: move platform into folder with proper isolation - [`7457876`](https://github.com/hoppscotch/hoppscotch/commit/7457876307453de11505e6612623a62d84239823) chore: add doc comments for platform auth - [`382dbc2`](https://github.com/hoppscotch/hoppscotch/commit/382dbc237c5a7eaaec88689c014534a18aafc039) chore: move profile.vue auth related usages to use platform - [`58dc5f4`](https://github.com/hoppscotch/hoppscotch/commit/58dc5f49836d665703414f06211bc2d6587a123f) chore: move Shortcodes.vue and UserDelete.vue auth related usages to use platform - [`72a43ab`](https://github.com/hoppscotch/hoppscotch/commit/72a43ab23784bee7827405a95a7695ed3bd43d48) chore: add emailVerified field to HoppUser - [`edf5b8e`](https://github.com/hoppscotch/hoppscotch/commit/edf5b8e30a8e92eb9b5eb56b54c57af62d092043) chore: add magic link validation function to platform auth - [`b3e022c`](https://github.com/hoppscotch/hoppscotch/commit/b3e022c0871208080ecf4618a065559b8e984ae2) chore: upgrade enter.vue to use platform auth ### 📊 Changes **40 files changed** (+1005 additions, -794 deletions) <details> <summary>View changed files</summary> 📝 `packages/hoppscotch-common/src/components/app/DeveloperOptions.vue` (+4 -6) 📝 `packages/hoppscotch-common/src/components/app/Footer.vue` (+5 -2) 📝 `packages/hoppscotch-common/src/components/app/Header.vue` (+5 -3) 📝 `packages/hoppscotch-common/src/components/collections/ChooseType.vue` (+8 -3) 📝 `packages/hoppscotch-common/src/components/collections/ImportExport.vue` (+5 -2) 📝 `packages/hoppscotch-common/src/components/collections/graphql/ImportExport.vue` (+5 -2) 📝 `packages/hoppscotch-common/src/components/collections/index.vue` (+5 -2) 📝 `packages/hoppscotch-common/src/components/environments/ChooseType.vue` (+8 -3) 📝 `packages/hoppscotch-common/src/components/environments/ImportExport.vue` (+5 -2) 📝 `packages/hoppscotch-common/src/components/environments/index.vue` (+5 -2) 📝 `packages/hoppscotch-common/src/components/firebase/Login.vue` (+31 -45) 📝 `packages/hoppscotch-common/src/components/firebase/Logout.vue` (+2 -2) 📝 `packages/hoppscotch-common/src/components/profile/Shortcodes.vue` (+8 -3) 📝 `packages/hoppscotch-common/src/components/profile/UserDelete.vue` (+2 -2) 📝 `packages/hoppscotch-common/src/components/teams/index.vue` (+3 -1) 📝 `packages/hoppscotch-common/src/composables/auth.ts` (+21 -30) 📝 `packages/hoppscotch-common/src/helpers/backend/GQLClient.ts` (+43 -41) 📝 `packages/hoppscotch-common/src/helpers/fb/analytics.ts` (+4 -2) ➖ `packages/hoppscotch-common/src/helpers/fb/auth.ts` (+0 -434) 📝 `packages/hoppscotch-common/src/helpers/fb/collections.ts` (+13 -8) _...and 20 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:42:05 +03: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
starred/hoppscotch#4137
No description provided.