module Posts
Public Instance Methods
global(**args)
click to toggle source
GET /posts/streams/global
A stream of all users' public posts.
# File lib/pnut/posts.rb, line 5 def global(**args) self.request("/posts/streams/global", params: args) end
unified(**args)
click to toggle source
GET /posts/streams/unified
A combined Personal Stream including the authenticated user's mentions.
# File lib/pnut/posts.rb, line 12 def unified(**args) self.request("/posts/streams/unified", params: args) end