Skip to content

Commit

Permalink
Merge pull request #47 from meshhq/bugfix/application-uirl
Browse files Browse the repository at this point in the history
Updating email links
  • Loading branch information
kcoleman731 authored Jul 17, 2019
2 parents 042f2b4 + a3b46f7 commit ffbc224
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/clubs/dc-otto/mailer/templates/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ exports.MembershipInquiryTemplate = membershipInquiryTemplate;
const membershipInquiryResponseTemplate = (memberFormInfo, club, url) => {
const defaultDomain = `${club.domain}.tryclubhub.com`;
const domain = ts_optchain_1.oc(club).clubSettings.customDomain(defaultDomain);
const applicationURL = `https://${domain}.tryclubhub.com/forms/application`;
const applicationURL = `https://${domain}/forms/application`;
const admin = (club.name === core.Constants.Clubs.DRIVERS_CLUB) ? 'Amanda Friedman' : 'Eli Kogan';
const message = `
<p>Dear ${memberFormInfo.firstName},</p>
Expand Down
2 changes: 1 addition & 1 deletion src/clubs/dc-otto/mailer/templates/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ const membershipInquiryTemplate = (memberInfo: any, club: core.Club.Model) => {
const membershipInquiryResponseTemplate = (memberFormInfo: any, club: core.Club.Model, url?: any) => {
const defaultDomain = `${club.domain}.tryclubhub.com`
const domain = oc(club).clubSettings.customDomain(defaultDomain)
const applicationURL = `https://${domain}.tryclubhub.com/forms/application`
const applicationURL = `https://${domain}/forms/application`

const admin = (club.name === core.Constants.Clubs.DRIVERS_CLUB) ? 'Amanda Friedman' : 'Eli Kogan'

Expand Down

0 comments on commit ffbc224

Please sign in to comment.