Created
September 1, 2015 15:51
-
-
Save tommydunn/ffb300d7b5cb13b3e289 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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