External projects moderator database (#5692)

* Begin external projects moderator database frontend

* add copy link button

* begin project page permissions settings

* MEL database backend routes

* include filename in external files

* Hook up frontend external license page to backend

* more work on user-facing external projects stuff

* put user-facing stuff behind feature flag

* prepr

* clippy

---------

Co-authored-by: aecsocket <aecsocket@tutanota.com>
This commit is contained in:
Prospector
2026-05-04 09:31:37 -07:00
committed by GitHub
parent 565ac2cb53
commit e13a89dd72
40 changed files with 2099 additions and 95 deletions

View File

@@ -0,0 +1,12 @@
ALTER TABLE moderation_external_licenses
ADD COLUMN inserted_at timestamptz,
ADD COLUMN inserted_by bigint REFERENCES users(id),
ADD COLUMN updated_at timestamptz,
ADD COLUMN updated_by bigint REFERENCES users(id);
ALTER TABLE moderation_external_files
ADD COLUMN filename text,
ADD COLUMN inserted_at timestamptz,
ADD COLUMN inserted_by bigint REFERENCES users(id),
ADD COLUMN updated_at timestamptz,
ADD COLUMN updated_by bigint REFERENCES users(id);