lib/eps-rapid/notifications.rb in eps-rapid-1.0.0 vs lib/eps-rapid/notifications.rb in eps-rapid-1.0.1
- old
+ new
@@ -1,13 +1,13 @@
# frozen_string_literal: true
module EpsRapid
class Notifications
def self.test_notification_event(event)
- EpsRapid::Client.get("notifications/#{event}")
+ EpsRapid::Client.get("notifications/#{event}", {})
end
def self.undeliverable_notifications
- EpsRapid::Client.get('notifications/undeliverable')
+ EpsRapid::Client.get('notifications/undeliverable', {})
end
end
end