Fix #150: Show linked project on post details page and expose in API #151

Merged
retoor merged 3 commits from typosaurus/ticket-150 into master 2026-08-02 00:25:50 +02:00
Showing only changes of commit f44e3d1db8 - Show all commits

View File

@ -147,6 +147,9 @@ def init_db():
("is_private", 0), ("is_private", 0),
("read_only", 0), ("read_only", 0),
("updated_at", ""), ("updated_at", ""),
("title", ""),
("description", ""),
("status", ""),
): ):
if not projects.has_column(column): if not projects.has_column(column):
projects.create_column_by_example(column, example) projects.create_column_by_example(column, example)