-
Notifications
You must be signed in to change notification settings - Fork 2
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 #467 from ITPNYU/main
Production Release 10/15
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/********** GOOGLE SHEETS ************/ | ||
|
||
import { BookingStatusLabel } from "./types"; | ||
import { clientGetFinalApproverEmailFromDatabase } from "@/lib/firebase/firebase"; | ||
import { BookingStatusLabel } from "./types"; | ||
|
||
/** ACTIVE master Google Sheet */ | ||
export const ACTIVE_SHEET_ID = "1MnWbn6bvNyMiawddtYYx0tRW4NMgvugl0I8zBO3sy68"; | ||
|
@@ -30,6 +30,7 @@ export const SECOND_OLD_SAFETY_TRAINING_SHEET_ID = | |
"1TZYBrX5X6TXM07V3OMTOnVWF8qRmWnTzh27zacrQHh0"; | ||
export const SECOND_OLD_SAFETY_TRAINING_SHEET_GID = 293202487; | ||
export const MEDIA_COMMON_EMAIL = "[email protected]"; | ||
export const MEDIA_COMMON_OPERATION_EMAIL = "[email protected]"; | ||
|
||
/********** CONTACTS ************/ | ||
|
||
|
@@ -42,8 +43,8 @@ export const clientGetFinalApproverEmail = async (): Promise<string> => { | |
|
||
export const getApprovalCcEmail = (branchName: string) => | ||
branchName === "development" | ||
? "booking-app-devs+samantha@itp.nyu.edu" | ||
: "[email protected]"; // Samantha | ||
? "booking-app-devs+operation@itp.nyu.edu" | ||
: MEDIA_COMMON_OPERATION_EMAIL; | ||
|
||
export const getCancelCcEmail = () => | ||
process.env.NEXT_PUBLIC_BRANCH_NAME === "development" | ||
|