feat(tags): this adds support for post, link, book, show and movie tags with a tag list view and per tag pages
This commit is contained in:
parent
3d866262ca
commit
6fdc0b56b9
35 changed files with 500 additions and 70 deletions
|
@ -6,6 +6,7 @@ WITH activity_data AS (
|
|||
p.content AS description,
|
||||
p.url AS url,
|
||||
p.featured AS featured,
|
||||
p.tags::TEXT[],
|
||||
NULL AS author,
|
||||
NULL AS image,
|
||||
NULL AS rating,
|
||||
|
@ -26,6 +27,7 @@ WITH activity_data AS (
|
|||
l.description,
|
||||
l.link AS url,
|
||||
NULL AS featured,
|
||||
l.tags::TEXT[],
|
||||
l.author,
|
||||
NULL AS image,
|
||||
NULL AS rating,
|
||||
|
@ -48,6 +50,7 @@ WITH activity_data AS (
|
|||
b.description,
|
||||
b.url AS url,
|
||||
NULL AS featured,
|
||||
b.tags::TEXT[],
|
||||
NULL AS author,
|
||||
b.image,
|
||||
b.rating,
|
||||
|
@ -71,6 +74,7 @@ WITH activity_data AS (
|
|||
m.description,
|
||||
m.url AS url,
|
||||
NULL AS featured,
|
||||
m.tags::TEXT[],
|
||||
NULL AS author,
|
||||
m.image,
|
||||
m.rating,
|
||||
|
@ -92,6 +96,7 @@ WITH activity_data AS (
|
|||
c.concert_notes AS description,
|
||||
NULL AS url,
|
||||
NULL AS featured,
|
||||
NULL AS tags,
|
||||
NULL AS author,
|
||||
NULL AS image,
|
||||
NULL AS rating,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue