You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: server/node-service/src/plugins/oneSignal/index.ts
+12-20Lines changed: 12 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -10,26 +10,18 @@ const dataSourceConfig = {
10
10
type: "dataSource",
11
11
params: [
12
12
{
13
-
type: "groupTitle",
14
-
key: "app_key",
15
-
label: "Api Token Auth",
13
+
"type": "password",
14
+
"key": "app_key.value",
15
+
"label": "REST API Key",
16
+
'tooltip': 'Private key used for most API calls like sending push notifications and updating users. [Documentation](https://documentation.onesignal.com/docs/accounts-and-keys#rest-api-key)'
16
17
},
17
18
{
18
-
type: "password",
19
-
key: "app_key.value",
20
-
label: "Token",
21
-
},
22
-
{
23
-
type: "groupTitle",
24
-
key: "user_key",
25
-
label: "Api Token Auth",
26
-
},
27
-
{
28
-
type: "password",
29
-
key: "user_key.value",
30
-
label: "Token",
31
-
},
32
-
],
19
+
"type": "password",
20
+
"key": "user_key.value",
21
+
"label": "User Auth Key",
22
+
'tooltip': 'Another type of REST API key used for viewing Apps and related updates. [Documentation](https://documentation.onesignal.com/docs/accounts-and-keys#user-auth-key)'
0 commit comments