fix: include published column in hashtags feed
This commit is contained in:
parent
ca1b3079d4
commit
1c86110ed4
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue