mirror of
https://github.com/internetee/registry.git
synced 2025-07-31 06:56:23 +02:00
14 lines
293 B
Ruby
14 lines
293 B
Ruby
module EisBilling
|
|
class BaseController < ApplicationController
|
|
# load_and_authorize_resource
|
|
|
|
skip_authorization_check # Temporary solution
|
|
skip_before_action :verify_authenticity_token # Temporary solution
|
|
end
|
|
|
|
protected
|
|
|
|
def logger
|
|
@logger ||= Rails.logger
|
|
end
|
|
end
|