mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-01 05:06:53 +08:00
fix(plugins): Change server URLs for open/link tracking to final values
This commit is contained in:
parent
a2311ce631
commit
fb335c332b
4 changed files with 10 additions and 2 deletions
|
@ -2,4 +2,4 @@ import plugin from '../package.json'
|
|||
|
||||
export const PLUGIN_NAME = plugin.title
|
||||
export const PLUGIN_ID = plugin.appId[NylasEnv.config.get("env")];
|
||||
export const PLUGIN_URL = "https://edgehill-staging.nylas.com";
|
||||
export const PLUGIN_URL = plugin.serverUrl[NylasEnv.config.get("env")];
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
"staging": "2lsb6ounfysvwcdzxzy3bzsuh",
|
||||
"production": "a1ec1s3ieddpik6lpob74hmcq"
|
||||
},
|
||||
"serverUrl": {
|
||||
"staging": "https://link-staging.nylas.com",
|
||||
"production": "https://link.nylas.com"
|
||||
},
|
||||
|
||||
"title": "Link Tracking",
|
||||
"description": "Tracks whether links in an email have been clicked by recipients",
|
||||
|
|
|
@ -2,4 +2,4 @@ import plugin from '../package.json'
|
|||
|
||||
export const PLUGIN_NAME = plugin.title
|
||||
export const PLUGIN_ID = plugin.appId[NylasEnv.config.get("env")];
|
||||
export const PLUGIN_URL = "https://edgehill-staging.nylas.com";
|
||||
export const PLUGIN_URL = plugin.serverUrl[NylasEnv.config.get("env")];
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
"staging": "3i2bws091xrj7fpb1aqt2tud6",
|
||||
"production": "1hnytbkg4wd1ahodatwxdqlb5"
|
||||
},
|
||||
"serverUrl": {
|
||||
"staging": "https://link-staging.nylas.com",
|
||||
"production": "https://link.nylas.com"
|
||||
},
|
||||
|
||||
"title": "Open Tracking",
|
||||
"description": "Tracks whether email messages have been opened by recipients",
|
||||
|
|
Loading…
Reference in a new issue