DISCORD_CALLBACK_URL, discordCallback);
+
const db = (await dbClient.client).db('vaken');
const server = new ApolloServer({
diff --git a/src/server/mail/templates/accepted.ts b/src/server/mail/templates/accepted.ts
index b4c7bfe08..1f44b63bb 100644
--- a/src/server/mail/templates/accepted.ts
+++ b/src/server/mail/templates/accepted.ts
@@ -263,7 +263,7 @@ export default (user: UserDbInterface): AWS.SES.SendEmailRequest => ({
- Congratulations! You’re invited to be a part of VandyHacks VII: Retro Edition! We enjoyed reading your application and would love to see your ideas come to life during our virtual event on October 2nd-4th!
+ Congratulations! You’re invited to be a part of VandyHacks VIII: Space Edition! We enjoyed reading your application and would love to see your ideas come to life during our virtual event on October 2nd-4th!
|
@@ -631,7 +631,7 @@ export default (user: UserDbInterface): AWS.SES.SendEmailRequest => ({
Text: {
Charset: 'UTF-8',
Data: `Hi ${escape(user.preferredName || user.firstName)},
- Congratulations! You’re invited to be a part of VandyHacks VII: Retro Edition! We enjoyed reading your application and would love to see your ideas come to life during our virtual event on October 2nd-4th!
+ Congratulations! You’re invited to be a part of VandyHacks VIII: Space Edition! We enjoyed reading your application and would love to see your ideas come to life during our virtual event on October 2nd-4th!
Head over to the application portal here and confirm your attendance by October 2nd, 12:00 PM CDT. Make sure you’ve also read and checked “agree” to our hackathon waiver under the hacker application.
diff --git a/src/server/mail/templates/confirmed.ts b/src/server/mail/templates/confirmed.ts
index 7b3b275d1..4e26d03e0 100644
--- a/src/server/mail/templates/confirmed.ts
+++ b/src/server/mail/templates/confirmed.ts
@@ -263,7 +263,7 @@ export default (user: UserDbInterface): AWS.SES.SendEmailRequest => ({
- We're so excited that you'll be joining us for VandyHacks VII: Retro Edition!
+ We're so excited that you'll be joining us for VandyHacks VIII: Space Edition!
|
@@ -623,7 +623,7 @@ export default (user: UserDbInterface): AWS.SES.SendEmailRequest => ({
Text: {
Charset: 'UTF-8',
Data: `Hey ${escape(user.preferredName || user.firstName)},
- We're so excited that you'll be joining us for VandyHacks VII: Retro Edition!
+ We're so excited that you'll be joining us for VandyHacks VIII: Space Edition!
This email is just to confirm that you've RSVPed to our event. We'll be in touch again soon with more information on our opening ceremony, but as a reminder, festivities will start at 7:00 PM CDT Friday, October 2nd, and wrap up by 4:00 PM CDT Sunday, October 4th.
diff --git a/src/server/mail/templates/rejected.ts b/src/server/mail/templates/rejected.ts
index 282608a15..a4276769b 100644
--- a/src/server/mail/templates/rejected.ts
+++ b/src/server/mail/templates/rejected.ts
@@ -263,7 +263,7 @@ export default (user: UserDbInterface): AWS.SES.SendEmailRequest => ({
- Thank you for your interest in VandyHacks VII: Retro Edition. Unfortunately, we are unable to offer you a spot at this year's event.
+ Thank you for your interest in VandyHacks VIII: Space Edition. Unfortunately, we are unable to offer you a spot at this year's event.
|
@@ -584,7 +584,7 @@ export default (user: UserDbInterface): AWS.SES.SendEmailRequest => ({
Text: {
Charset: 'UTF-8',
Data: `Hi ${escape(user.preferredName || user.firstName)},
- Thank you for your interest in VandyHacks VII: Retro Edition. Unfortunately, we are unable to offer you a spot at this year's event.
+ Thank you for your interest in VandyHacks VIII: Space Edition. Unfortunately, we are unable to offer you a spot at this year's event.
We really appreciate your interest and hope you will apply to another VandyHacks opportunity in the future.
Best,
The VandyHacks Team`,
diff --git a/src/server/mail/templates/submitted.ts b/src/server/mail/templates/submitted.ts
index 6f8b9c2a3..d3f281c88 100644
--- a/src/server/mail/templates/submitted.ts
+++ b/src/server/mail/templates/submitted.ts
@@ -268,7 +268,7 @@ export default (user: UserDbInterface): AWS.SES.SendEmailRequest => ({
- Thanks for taking the time to complete your application! We’re so excited that you’re interested in being a part of VandyHacks VII: Retro Edition.
+ Thanks for taking the time to complete your application! We’re so excited that you’re interested in being a part of VandyHacks VIII: Space Edition.
|
@@ -454,7 +454,7 @@ export default (user: UserDbInterface): AWS.SES.SendEmailRequest => ({
You are receiving this application update because you applied at apply.vandyhacks.org. If you would like to opt-out of
- any future emails pertaining to VandyHacks VII: Retro Edition applications, please click here
|
@@ -595,7 +595,7 @@ export default (user: UserDbInterface): AWS.SES.SendEmailRequest => ({
Charset: 'UTF-8',
Data: `Thank you for applying!
Hi ${escape(user.preferredName || user.firstName)},
- Thanks for taking the time to complete your application! We’re so excited that you’re interested in being a part of VandyHacks VII: Retro Edition.
+ Thanks for taking the time to complete your application! We’re so excited that you’re interested in being a part of VandyHacks VIII: Space Edition.
We will be reviewing your submission soon, so be on the lookout for another email regarding your status.
Until then, stay hyped about VandyHacks! Like our page on Facebook and follow us on Instagram.
Cheers,
diff --git a/src/server/storage/gcp.ts b/src/server/storage/gcp.ts
index 98fe5a858..70e556c58 100644
--- a/src/server/storage/gcp.ts
+++ b/src/server/storage/gcp.ts
@@ -25,6 +25,9 @@ export const getSignedUploadUrl = async (filename: string): Promise => {
contentType: 'application/pdf',
expires: Date.now() + 15 * 60 * 1000, // 15 minutes
version: 'v4' as const,
+ extensionHeaders: {
+ 'x-goog-content-length-range': '0,5242880',
+ },
};
const [url] = await storage.bucket(BUCKET_NAME).file(filename).getSignedUrl(options);