module Services::Base::CallLogger::ClassMethods
Public Instance Methods
call_logging_disabled()
click to toggle source
# File lib/services/modules/call_logger.rb, line 17 def call_logging_disabled @_call_logging_disabled end
disable_call_logging()
click to toggle source
# File lib/services/modules/call_logger.rb, line 21 def disable_call_logging @_call_logging_disabled = true end
enable_call_logging()
click to toggle source
# File lib/services/modules/call_logger.rb, line 25 def enable_call_logging @_call_logging_disabled = false end