added endpoint for receive incoming transaction from lhv connect

This commit is contained in:
olegphenomenon 2022-01-25 16:17:02 +02:00
parent a8f1f885de
commit 390d693b13
4 changed files with 53 additions and 8 deletions

View file

@ -0,0 +1,12 @@
module EisBilling
class BaseController < ApplicationController
skip_authorization_check # Temporary solution
skip_before_action :verify_authenticity_token # Temporary solution
end
protected
def logger
@logger ||= Rails.logger
end
end