From 62205919a3e278cfc9317ab4cb3bd6950bef14db Mon Sep 17 00:00:00 2001 From: liyasthomas Date: Thu, 26 Aug 2021 10:00:21 +0530 Subject: [PATCH] feat: env variable support in authorization Co-authored-by: Andrew Bastin --- components/http/Authorization.vue | 91 ++++++++++++++++--------- components/http/OAuth2Authorization.vue | 44 ++++++------ helpers/utils/EffectiveURL.ts | 12 ++-- 3 files changed, 88 insertions(+), 59 deletions(-) diff --git a/components/http/Authorization.vue b/components/http/Authorization.vue index 4a64c29ac..0bafbd501 100644 --- a/components/http/Authorization.vue +++ b/components/http/Authorization.vue @@ -108,39 +108,51 @@ />
-
-
+
+
+ -
-
+
+ - - + + +
-
-
+
+
+ -
-
-
+
+
+ -
@@ -316,6 +344,7 @@ export default defineComponent({ passwordFieldType, clearContent, switchVisibility, + EXPERIMENTAL_URL_BAR_ENABLED: useSetting("EXPERIMENTAL_URL_BAR_ENABLED"), } }, }) diff --git a/components/http/OAuth2Authorization.vue b/components/http/OAuth2Authorization.vue index 8bd8e98a6..53e8f8d68 100644 --- a/components/http/OAuth2Authorization.vue +++ b/components/http/OAuth2Authorization.vue @@ -1,57 +1,53 @@