Method: Outbound.disable_all
- Defined in:
- lib/outbound.rb
.disable_all(platform, user_id) ⇒ Object
75 76 77 78 79 80 81 82 |
# File 'lib/outbound.rb', line 75 def Outbound.disable_all(platform, user_id) if @ob == nil res = Result.new Outbound::ERROR_INIT, false @logger.error res.error return res end return @ob.disable_all(platform, user_id) end |