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