-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #364 from datasektionen/main
Pray this don´t burn down
- Loading branch information
Showing
19 changed files
with
671 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-- AlterTable | ||
ALTER TABLE "exhibitors" ADD COLUMN "meetingTimeSlots" INTEGER[] DEFAULT ARRAY[]::INTEGER[]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -342,6 +342,7 @@ export default { | |
bookedMeetings: "booked meetings", | ||
bookSelected: "Send meeting request", | ||
caution: "Student meetings are not available on phones", | ||
noTimesLeft: "No times left", | ||
pages: { | ||
interested: "Interested students", | ||
pending: "Pending requests", | ||
|
@@ -434,7 +435,7 @@ export default { | |
<p>Hi!</p> | ||
<p>We are pleased to confirm we have received your exhibitor registration. | ||
We will contact you during the spring about whether you got a spot at D-Dagen. | ||
You can expect to hear from us by June 8th at the latest.</p> | ||
You can expect to hear from us by June 8th at the latest.</p> | ||
<p>Here are the details of your registration:</p> | ||
<ul> | ||
|
@@ -452,6 +453,125 @@ export default { | |
<p>The D-Dagen project group</p> | ||
`, | ||
}, | ||
meeting_email: { | ||
meeting_request_to_student: { | ||
subject: ( | ||
companyName: string | ||
) => `Meeting Request from ${companyName}`, | ||
body: ( | ||
firstName: string, | ||
lastName: string, | ||
companyName: string | ||
)=>` | ||
<p>Hi ${firstName} ${lastName}!</p> | ||
<p>We are pleased to confirm that ${companyName} wants a meeting with you</p> | ||
<p>If any of the information above is incorrect or if you have any other questions, | ||
do not hesitate to contact our sales team at [email protected].</p> | ||
<p>Best regards,</p> | ||
<p>The D-Dagen project group</p> | ||
`, | ||
}, | ||
meeting_declined_by_student: { | ||
subject: ( | ||
firstName: string, | ||
lastName: string | ||
)=> | ||
`Meeting Declined by ${firstName} ${lastName}`, | ||
body: ( | ||
firstName: string, | ||
lastName: string, | ||
)=>` | ||
<p>Hi!</p> | ||
<p>We are sorry to inform that ${firstName} ${lastName} has declined your meeting offer</p> | ||
<p>If any of the information above is incorrect or if you have any other questions, | ||
do not hesitate to contact our sales team at [email protected].</p> | ||
<p>Best regards,</p> | ||
<p>The D-Dagen project group</p> | ||
`, | ||
}, | ||
meeting_deleted_by_student: { | ||
subject: ( | ||
firstName: string, | ||
lastName: string | ||
)=> | ||
`Meeting Cancelled by ${firstName} ${lastName}`, | ||
body: ( | ||
firstName: string, | ||
lastName: string, | ||
)=>` | ||
<p>Hi!</p> | ||
<p>We are sorry to inform that ${firstName} ${lastName} has canceled your meeting</p> | ||
<p>If any of the information above is incorrect or if you have any other questions, | ||
do not hesitate to contact our sales team at [email protected].</p> | ||
<p>Best regards,</p> | ||
<p>The D-Dagen project group</p> | ||
`, | ||
}, | ||
meeting_deleted_by_company: { | ||
subject: ( | ||
companyName: string | ||
)=>`Meeting Cancelled by ${companyName}`, | ||
body: ( | ||
firstName: string, | ||
lastName: string, | ||
companyName: string, | ||
)=>` | ||
<p>Hi ${firstName} ${lastName}!</p> | ||
<p>We are sorry to inform that ${companyName} has canceled your meeting</p> | ||
<p>If any of the information above is incorrect or if you have any other questions, | ||
do not hesitate to contact our sales team at [email protected].</p> | ||
<p>Best regards,</p> | ||
<p>The D-Dagen project group</p> | ||
`, | ||
}, | ||
meeting_completed_to_company: { | ||
subject: ( | ||
firstName: string, | ||
lastName: string, | ||
companyName: string | ||
)=> `Meeting Confirmed – ${companyName} and ${firstName} ${lastName}`, | ||
body: ( | ||
firstName: string, | ||
lastName: string, | ||
companyName: string, | ||
time: string, | ||
location: string, | ||
)=>` | ||
<p>Hi ${companyName}!</p> | ||
<p>This is a confirmation for your student meeting with ${firstName} ${lastName}</p> | ||
<p>Time: ${time}</p> | ||
<p>Location: ${location}</p> | ||
<p>If any of the information above is incorrect or if you have any other questions, | ||
do not hesitate to contact our sales team at [email protected].</p> | ||
<p>Best regards,</p> | ||
<p>The D-Dagen project group</p> | ||
`, | ||
}, | ||
meeting_completed_to_student: { | ||
subject: ( | ||
firstName: string, | ||
lastName: string, | ||
companyName: string | ||
)=> `Meeting Confirmed – ${companyName} and ${firstName} ${lastName}`, | ||
body: ( | ||
firstName: string, | ||
lastName: string, | ||
companyName: string, | ||
time: string, | ||
location: string, | ||
)=>` | ||
<p>Hi ${firstName} ${lastName}!</p> | ||
<p>This is a confirmation for your student meeting with ${companyName}</p> | ||
<p>Time: ${time}</p> | ||
<p>Location: ${location}</p> | ||
<p>If you wish to unbook your meeting please unbook via our https://ddagen.se/student </p> | ||
<p>If any of the information above is incorrect or if you have any other questions, | ||
do not hesitate to contact our sales team at [email protected].</p> | ||
<p>Best regards,</p> | ||
<p>The D-Dagen project group</p> | ||
`, | ||
}, | ||
}, | ||
faq: { | ||
box1: "ABOUT D-DAGEN", | ||
box2: "MARKETING", | ||
|
Oops, something went wrong.