This commit is contained in:
parent
7e2259658a
commit
4383a72ecb
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue