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

#2814 sign in email send correctly to users who register without google account #2892

Merged
merged 1 commit into from
Sep 26, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export default class EmailClient {
subject: string,
message: string,
): Promise<unknown> {

if (this.serviceEnv == 'locale2e') {
return;
}
Expand Down
4 changes: 2 additions & 2 deletions verification/curator-service/api/src/util/instance-details.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const urlMap: { [idx: string]: { [idx: string]: string } } = {
'covid-19': {
'COVID-19': {
local: 'http://localhost:3002',
dev: 'https://dev-data.covid-19.global.health',
qa: 'https://qa-data.covid-19.global.health',
Expand All @@ -12,7 +12,7 @@ export function baseURL(disease: string, environment: string): string {
}

const welcomeMessages: { [idx: string]: string } = {
'covid-19': `<p>Thank you for registering with Global.health! We're thrilled to have you join our international community and mission to advance the global response to infectious diseases through the sharing of trusted and open public health data.</p>
'COVID-19': `<p>Thank you for registering with Global.health! We're thrilled to have you join our international community and mission to advance the global response to infectious diseases through the sharing of trusted and open public health data.</p>
<p>Here are a few things you can do:</p>
<ul>
<li>Filter and export <a href="https://data.covid-19.global.health">G.h Data</a> containing detailed information on over 50 million anonymized COVID-19 cases from over 100 countries.</li>
Expand Down