Skip to content

Commit

Permalink
add creatorProfile
Browse files Browse the repository at this point in the history
  • Loading branch information
borispoehland committed Aug 25, 2024
1 parent 76640e7 commit 596c13a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/email/event-email.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const translations = {
meta: 'Your {eventName} Ticket is Here – Claim Now!',
title: 'Dear {name},',
description:
'We’re excited to have you join us at the {eventName}! Please click the button below to claim your ticket and secure your spot:',
"We're excited to have you join us at the {eventName}! Please click the button below to claim your ticket and secure your spot:",
action: 'Claim your ticket',
info: 'For more information and updates, <xoxnolink>visit our website</xoxnolink>. If you have any questions, feel free to reach out to us <emaillink>via email</emaillink>.',
maps: 'Open in Google Maps',
Expand Down
12 changes: 12 additions & 0 deletions src/types/event.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import { CreatorInfo } from './collection'
import { CreatorProfile } from './user'

export interface IEventDoc {
dataType: 'event-profile'
descriptionUrl: string
Expand Down Expand Up @@ -39,6 +42,15 @@ export interface IEventDoc {
tags: string[]
alternativeTitle?: string
}
creatorProfile: {
name: string
contractAddress: string
address: string
profile: string
banner: string
description: string
creatorTag: string
}
}

export interface ITicketDoc {
Expand Down

0 comments on commit 596c13a

Please sign in to comment.