Skip to content

Instantly share code, notes, and snippets.

@tommydunn
Created September 1, 2015 15:51
Show Gist options
  • Save tommydunn/ffb300d7b5cb13b3e289 to your computer and use it in GitHub Desktop.
Save tommydunn/ffb300d7b5cb13b3e289 to your computer and use it in GitHub Desktop.
ActivityFeedController line 11 says:
```@activities = @current_user.
feed_activities.
excluding(@current_user).
newest```
[9:43 AM] tim: change that to:
```@activities = @current_user.
feed_activities.
for_account(@current_user.account.id).
excluding(@current_user).
newest```
(edited)
[9:43 AM] tommy: looking at it now
[9:44 AM] tim: Then go to Activity.rb and add the following line after line 9:
[9:44 AM] tim:
```scope :for_account, ->(account_id) { where('account_id = ?', account_id) }```
[9:44 AM] tim: that should do it
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment