This commit is contained in:
Leandro Facchinetti 2020-03-20 14:38:14 -04:00
parent 5f603b76a5
commit 9a4930c23a
1 changed files with 6 additions and 6 deletions

View File

@ -269,30 +269,30 @@ function Entry({
}; };
} }
function newToken() { function newToken(): string {
return cryptoRandomString({ return cryptoRandomString({
length: 20, length: 20,
characters: "1234567890qwertyuiopasdfghjklzxcvbnm" characters: "1234567890qwertyuiopasdfghjklzxcvbnm"
}); });
} }
function now() { function now(): string {
return new Date().toISOString(); return new Date().toISOString();
} }
export function feedPath(token: string) { export function feedPath(token: string): string {
return `static/feeds/${token}.xml`; return `static/feeds/${token}.xml`;
} }
function feedURL(token: string) { function feedURL(token: string): string {
return `https://www.kill-the-newsletter.com/feeds/${token}.xml`; return `https://www.kill-the-newsletter.com/feeds/${token}.xml`;
} }
export function feedEmail(token: string) { export function feedEmail(token: string): string {
return `${token}@kill-the-newsletter.com`; return `${token}@kill-the-newsletter.com`;
} }
function id(token: string) { function id(token: string): string {
return `urn:kill-the-newsletter:${token}`; return `urn:kill-the-newsletter:${token}`;
} }