debug hashtags

This commit is contained in:
Ahmed Salah Tawfik Ibrahim 2023-12-04 15:24:22 +01:00
parent 3ee0812469
commit 73e19d2520
1 changed files with 6 additions and 1 deletions

View File

@ -882,7 +882,12 @@ public final class DBCassandraAstyanaxImpl implements DatabookStore {
*/
@Override
public List<Feed> getVREFeedsByHashtag(String vreid, String hashtag) throws PrivacyLevelTypeNotFoundException, FeedTypeNotFoundException, FeedIDNotFoundException, ColumnNameNotFoundException {
return null;
List<Post>posts = getVREPostsByHashtag(vreid,hashtag);
List<Feed>feeds = new ArrayList<>();
for(Post post: posts){
feeds.add(post2feed(post));
}
return feeds;
}
/**
* {@inheritDoc}