Skip to content

Commit f201e2b

Browse files
authored
Merge pull request openiap#36 from skadefro/master
fix
2 parents b8ffb6d + 3b9a159 commit f201e2b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

OpenFlowNodeRED/src/nodered/nodes/googleauth.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
icon: "font-awesome/fa-globe",
216216
defaults: {
217217
config: { value: "", type: "googleauth credentials", required: true },
218-
method: { value: "GET" },
218+
method: { value: "" },
219219
url: { value: "" },
220220
name: { value: "" }
221221
},

OpenFlowNodeRED/src/nodered/nodes/googleauth_nodes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function GetGoogleAuthClient(config: Igoogleauth_credentials): any {
1717
}
1818
if (!NoderedUtil.IsNullEmpty(config.serviceaccount)) {
1919
result.auth = new GoogleAuth({
20-
scopes: config.scopes,
20+
scopes: config.scopes.split(",").join(" "),
2121
credentials: config.serviceaccount
2222
});
2323
}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.547
1+
0.0.548

0 commit comments

Comments
 (0)