Method: Twterm::RESTClient#unmute
- Defined in:
- lib/twterm/rest_client.rb
#unmute(user_ids) ⇒ Object
338 339 340 341 342 343 344 345 346 |
# File 'lib/twterm/rest_client.rb', line 338 def unmute(user_ids) send_request do rest_client.unmute(*user_ids) end.then do |users| users.each do |user| friendship_repository.unmute(self.user_id, user.id) end end end |