Skip to content

Commit ca54df2

Browse files
author
vikasrohit
authored
Merge pull request #363 from topcoder-platform/feature/looker-api-integration
Reporting endpoint and Looker api integration
2 parents 41202f5 + ae6a598 commit ca54df2

File tree

12 files changed

+2381
-1452
lines changed

12 files changed

+2381
-1452
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ workflows:
9696
- test
9797
filters:
9898
branches:
99-
only: ['dev', 'dev-sts']
99+
only: ['dev', 'dev-sts', 'feature/looker-api-integration']
100100
- deployProd:
101101
context : org-global
102102
requires:

config/custom-environment-variables.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,15 @@
5050
"accountsAppUrl": "ACCOUNTS_APP_URL",
5151
"inviteEmailSubject": "INVITE_EMAIL_SUBJECT",
5252
"inviteEmailSectionTitle": "INVITE_EMAIL_SECTION_TITLE",
53-
"SSO_REFCODES": "SSO_REFCODES"
53+
"SSO_REFCODES": "SSO_REFCODES",
54+
"lookerConfig": {
55+
"BASE_URL": "LOOKER_API_BASE_URL",
56+
"CLIENT_ID": "LOOKER_API_CLIENT_ID",
57+
"CLIENT_SECRET": "LOOKER_API_CLIENT_SECRET",
58+
"TOKEN": "TOKEN",
59+
"USE_MOCK": "LOOKER_API_ENABLE_MOCK",
60+
"QUERIES": {
61+
"REG_STATS": "LOOKER_API_REG_STATS_QUERY_ID"
62+
}
63+
}
5464
}

config/default.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,15 @@
6060
"MAX_REVISION_NUMBER": 100,
6161
"UNIQUE_GMAIL_VALIDATION": false,
6262
"SSO_REFCODES": "[]",
63-
"VALID_STATUSES_BEFORE_PAUSED": "[\"active\"]"
63+
"VALID_STATUSES_BEFORE_PAUSED": "[\"active\"]",
64+
"lookerConfig": {
65+
"BASE_URL": "",
66+
"CLIENT_ID": "",
67+
"CLIENT_SECRET": "",
68+
"TOKEN": "TOKEN",
69+
"USE_MOCK": false,
70+
"QUERIES": {
71+
"REG_STATS": 1234
72+
}
73+
}
6474
}

0 commit comments

Comments
 (0)