Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TAS-2224] 📈 Create crisp user profile from server events #1833

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions functions/.env.civic-liker
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ AUTHCORE_PUBLIC_KEY="-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEErdiPZuoZVaPr/iKOquepAtnGrAI
q3wuANrwUjyvFJeOztAbPKAc+CjP+jJZ4UjEQl/PoIwZZDgOWMeYe0pO6Q==
-----END PUBLIC KEY-----"
CRISP_WEBSITE_ID=5c009125-5863-4059-ba65-43f177ca33f7
1 change: 1 addition & 0 deletions functions/.env.civic-liker-develop
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ AUTHCORE_PUBLIC_KEY="-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEKY6MShC7UrSkekyczKKvZQXuxFKD
Rd0DEgV6r9XeDAZoYPPTvgx3oNBTatFJjSOJ/qRrBbqvbZDiPOLpJ7vlaQ==
-----END PUBLIC KEY-----"
CRISP_WEBSITE_ID=4e80ff4a-e151-4393-a09b-14e6342ad11d
3 changes: 3 additions & 0 deletions functions/api/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ config.LIKE_CO_CLIENT_SECRET = process.env.LIKE_CO_CLIENT_SECRET;
config.COOKIE_SECRET = process.env.COOKIE_SECRET;

config.CRISP_USER_HASH_SECRET = process.env.CRISP_USER_HASH_SECRET;
config.CRISP_PLUGIN_IDENTIFIER = process.env.CRISP_PLUGIN_IDENTIFIER;
config.CRISP_PLUGIN_KEY = process.env.CRISP_PLUGIN_KEY;
config.CRISP_WEBSITE_ID = process.env.CRISP_WEBSITE_ID;

config.LIKECOIN_CHAIN_API = process.env.LIKECOIN_CHAIN_API;
config.LIKECOIN_API_BASE = process.env.LIKECOIN_API_BASE;
Expand Down
2 changes: 2 additions & 0 deletions functions/api/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ module.exports = onRequest(
'LIKE_CO_CLIENT_SECRET',
'COOKIE_SECRET',
'CRISP_USER_HASH_SECRET',
'CRISP_PLUGIN_KEY',
'CRISP_PLUGIN_IDENTIFIER',
'SENDGRID_API_KEY',
'GET_WALLET_API_SECRET',
'AIRTABLE_API_SECRET',
Expand Down
Loading
Loading