Method: Twterm::Client#mentions
- Defined in:
- lib/twterm/client.rb
#mentions ⇒ Object
225 226 227 228 229 230 231 232 233 |
# File 'lib/twterm/client.rb', line 225 def mentions send_request do rest_client.mentions(count: 200) end.then do |statuses| statuses .select(&@mute_filter) .map(&CREATE_STATUS_PROC) end end |