This commit is contained in:
Leandro Facchinetti 2021-03-12 14:27:27 +00:00
parent 7e2259658a
commit 4383a72ecb
1 changed files with 1 additions and 5 deletions

View File

@ -38,10 +38,6 @@ export default function killTheNewsletter(
"entryFeedCreatedTitle",
(title: string): string => `${title}” inbox created`
);
database.function(
"entryFeedCreatedAuthor",
(): string => "Kill the Newsletter!"
);
database.function(
"entryFeedCreatedContent",
(feedReference: string): HTML => html`
@ -97,7 +93,7 @@ export default function killTheNewsletter(
VALUES (
"NEW"."id",
entryFeedCreatedTitle("NEW"."title"),
entryFeedCreatedAuthor(),
'Kill the Newsletter!',
entryFeedCreatedContent("NEW"."reference")
);
END;