Comment cleanup, lint

This commit is contained in:
Ian Philips 2022-09-09 14:54:45 -06:00
parent f9651c0492
commit 6351130ec8
2 changed files with 2 additions and 28 deletions

View File

@ -219,7 +219,7 @@ export const sendOneWeekBonusEmail = async (
)
return
const { name, id: userId } = user
const { name } = user
const firstName = name.split(' ')[0]
const unsubscribeLink = `${DOMAIN}/notifications?section=${
@ -252,7 +252,7 @@ export const sendCreatorGuideEmail = async (
)
return
const { name, id: userId } = user
const { name } = user
const firstName = name.split(' ')[0]
const unsubscribeLink = `${DOMAIN}/notifications?section=${

View File

@ -108,29 +108,3 @@ export function groupNotifications(notifications: Notification[]) {
})
return notificationGroups
}
// const lessPriorityReasons = [
// 'on_contract_with_users_comment',
// 'on_contract_with_users_answer',
// // Notifications not currently generated for users who've sold their shares
// 'on_contract_with_users_shares_out',
// // Not sure if users will want to see these w/ less:
// // 'on_contract_with_users_shares_in',
// ]
// function getAppropriateNotifications(
// notifications: Notification[],
// notificationPreferences?: notification_subscribe_types
// ) {
// if (notificationPreferences === 'all') return notifications
// if (notificationPreferences === 'less')
// return notifications.filter(
// (n) =>
// n.reason &&
// // Show all contract notifications and any that aren't in the above list:
// (n.sourceType === 'contract' || !lessPriorityReasons.includes(n.reason))
// )
// if (notificationPreferences === 'none') return []
//
// return notifications
// }