feat: limit Discord sharing and support community allowlists

This commit is contained in:
syntaxbullet
2026-09-04 18:25:09 +02:00
parent d624ee6c3c
commit 32002151e0
9 changed files with 892 additions and 7 deletions

View File

@@ -0,0 +1,5 @@
CREATE TABLE `sharing_limits` (
`key` text PRIMARY KEY NOT NULL,
`started_at` integer NOT NULL,
`count` integer NOT NULL
);