nadilhassan / humhub-news-module

This module allows you to publish news stories to any Space - you can upload a photo and select a layout.
15 stars 8 forks source link

News image missing on dashboard of non member space news #6

Open buddh4 opened 7 years ago

buddh4 commented 7 years ago

The news image of spaces news the user is not a member of cannot be displayed because of missing permissions. I'would suggest only viewing news of spaces the user is a member (or following) of.

buddh4 commented 7 years ago

Hi Nadil, any news on this? I think the best way to achieve this is by using:

https://github.com/humhub/humhub/blob/master/protected/humhub/modules/content/components/ActiveQueryContent.php#L116

So you should be able to load all your user related news as:

News::find()->userRelated([
ActiveQueryContent::USER_RELATED_SCOPE_SPACES,
USER_RELATED_SCOPE_FOLLOWED_SPACES])->all();
nadilhassan commented 7 years ago

Hi! Yes Updated. Now non member users cannot see non following space news!