Whatsapp send and Zammad autologin fixes

This commit is contained in:
Darren Clarke 2023-09-08 16:34:13 +02:00
parent a3d6b786e1
commit 9e68be7225
15 changed files with 153 additions and 100 deletions

View file

@ -1,8 +1,6 @@
# frozen_string_literal: true
class Channel
class Driver
class CdrWhatsapp
class Channel::Driver::CdrWhatsapp
def fetchable?(_channel)
false
end
@ -24,7 +22,7 @@ class Channel
#
def send(options, article, _notification = false)
# return if we run import mode
# return if we run import mode
return if Setting.get('import_mode')
options = check_external_credential(options)
@ -50,6 +48,4 @@ class Channel
end
options
end
end
end
end