From e60b975b10a70f16bb37b9e1c0c922e10b135518 Mon Sep 17 00:00:00 2001
From: Robert Van Gorkom <vangorra@users.noreply.github.com>
Date: Thu, 2 Jul 2020 10:49:26 -0700
Subject: [PATCH] Fix gogogate2 issue where non-admin users could not login
 (#37353)

---
 homeassistant/components/gogogate2/config_flow.py | 2 +-
 homeassistant/components/gogogate2/manifest.json  | 2 +-
 homeassistant/components/gogogate2/strings.json   | 2 +-
 requirements_all.txt                              | 2 +-
 requirements_test_all.txt                         | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/homeassistant/components/gogogate2/config_flow.py b/homeassistant/components/gogogate2/config_flow.py
index 8c33af6af10..bca340fa62b 100644
--- a/homeassistant/components/gogogate2/config_flow.py
+++ b/homeassistant/components/gogogate2/config_flow.py
@@ -63,7 +63,7 @@ class Gogogate2FlowHandler(ConfigFlow, domain=DOMAIN):
                         CONF_IP_ADDRESS, default=user_input.get(CONF_IP_ADDRESS, "")
                     ): str,
                     vol.Required(
-                        CONF_USERNAME, default=user_input.get(CONF_USERNAME, "admin")
+                        CONF_USERNAME, default=user_input.get(CONF_USERNAME, "")
                     ): str,
                     vol.Required(
                         CONF_PASSWORD, default=user_input.get(CONF_PASSWORD, "")
diff --git a/homeassistant/components/gogogate2/manifest.json b/homeassistant/components/gogogate2/manifest.json
index 98aabba43b8..588d68484f2 100644
--- a/homeassistant/components/gogogate2/manifest.json
+++ b/homeassistant/components/gogogate2/manifest.json
@@ -3,6 +3,6 @@
   "name": "Gogogate2",
   "config_flow": true,
   "documentation": "https://www.home-assistant.io/integrations/gogogate2",
-  "requirements": ["gogogate2-api==1.0.3"],
+  "requirements": ["gogogate2-api==1.0.4"],
   "codeowners": ["@vangorra"]
 }
diff --git a/homeassistant/components/gogogate2/strings.json b/homeassistant/components/gogogate2/strings.json
index d519d9b9ea0..bbd4e8d80d1 100644
--- a/homeassistant/components/gogogate2/strings.json
+++ b/homeassistant/components/gogogate2/strings.json
@@ -10,7 +10,7 @@
     "step": {
       "user": {
         "title": "Setup GogoGate2",
-        "description": "Provide requisite information below. Note: only the 'admin' user is known to work.",
+        "description": "Provide requisite information below.",
         "data": {
           "ip_address": "IP Address",
           "username": "[%key:common::config_flow::data::username%]",
diff --git a/requirements_all.txt b/requirements_all.txt
index 460d8c6338b..4e743f31a18 100644
--- a/requirements_all.txt
+++ b/requirements_all.txt
@@ -660,7 +660,7 @@ glances_api==0.2.0
 gntp==1.0.3
 
 # homeassistant.components.gogogate2
-gogogate2-api==1.0.3
+gogogate2-api==1.0.4
 
 # homeassistant.components.google
 google-api-python-client==1.6.4
diff --git a/requirements_test_all.txt b/requirements_test_all.txt
index a05fc8c4d66..2143c84d6d5 100644
--- a/requirements_test_all.txt
+++ b/requirements_test_all.txt
@@ -310,7 +310,7 @@ gios==0.1.1
 glances_api==0.2.0
 
 # homeassistant.components.gogogate2
-gogogate2-api==1.0.3
+gogogate2-api==1.0.4
 
 # homeassistant.components.google
 google-api-python-client==1.6.4
-- 
GitLab