mirror of
https://github.com/internetee/registry.git
synced 2025-07-30 06:26:15 +02:00
12 lines
258 B
Ruby
12 lines
258 B
Ruby
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
|