fix: include published column in hashtags feed

This commit is contained in:
əlemi 2024-07-04 03:26:47 +02:00
parent ca1b3079d4
commit 1c86110ed4
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -102,6 +102,11 @@ impl Query {
select = select.select_column_as(col, format!("{}{}", model::object::Entity.table_name(), col.to_string())); select = select.select_column_as(col, format!("{}{}", model::object::Entity.table_name(), col.to_string()));
} }
select = select.select_column_as(
model::addressing::Column::Published,
format!("{}{}", model::addressing::Entity.table_name(), model::addressing::Column::Published.to_string())
);
select select
} }