Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonne Haß <me@mrzyx.de>2013-08-31 16:26:01 +0400
committerJonne Haß <me@mrzyx.de>2014-08-23 18:34:00 +0400
commit2cca5745c9fbc6a295c58d3dbea7889bc3074922 (patch)
tree19df5b1d40907ed3b2b880a0de951b99a813db1a /lib/stream/base.rb
parentcb195f4d55298f507f620fc9d456d63191eef0e7 (diff)
remove deprecated scoped
Diffstat (limited to 'lib/stream/base.rb')
-rw-r--r--lib/stream/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stream/base.rb b/lib/stream/base.rb
index 9a00ee173..77bbbe66a 100644
--- a/lib/stream/base.rb
+++ b/lib/stream/base.rb
@@ -32,7 +32,7 @@ class Stream::Base
# @return [ActiveRecord::Relation<Post>]
def posts
- Post.scoped
+ Post.all
end
# @return [Array<Post>]