-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Config for unsubscribe page (Depends on: https://github.com/vivid-planet/comet-brevo-module/pull/114) #117
base: next
Are you sure you want to change the base?
Conversation
Quality Gate passedIssues Measures |
bdfafc9
to
7646ad4
Compare
7646ad4
to
b7bb3d9
Compare
|
||
export class Migration20241024075236 extends Migration { | ||
async up(): Promise<void> { | ||
this.addSql('alter table "EmailCampaign" add column "unsubscriptionPageId" text null;'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would put the Migration files all in one file when it's in one MR.
@@ -76,6 +77,10 @@ export function createEmailCampaignEntity({ | |||
@Field(() => Date, { nullable: true }) | |||
scheduledAt?: Date; | |||
|
|||
@Property({ columnType: "text", nullable: true }) | |||
@Field(() => String, { nullable: true }) | |||
unsubscriptionPageId: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it necessary to save the unsubscriptionPageId in the EmailCampaign?
Description
Add
unsubscribePageId
to BrevoConfigScreenshots/screencasts
Changeset
[ ] I have verified if my change requires a changeset
Related tasks and documents
COM-1191
Open TODOs/questions
Further information
Depends on: #114