Method: Twterm::Client#unfollow

Defined in:
lib/twterm/client.rb

#unfollow(*user_ids) ⇒ Object



373
374
375
376
377
378
379
380
381
# File 'lib/twterm/client.rb', line 373

def unfollow(*user_ids)
  send_request do
    rest_client.unfollow(*user_ids)
  end.then do |users|
    users.each do |user|
      Friendship.unfollow(self.user_id, user.id)
    end
  end
end