mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 01:47:18 +02:00
15 lines
246 B
Ruby
15 lines
246 B
Ruby
module Epp::Common
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
protect_from_forgery with: :null_session
|
|
end
|
|
|
|
def proxy
|
|
send(params[:command])
|
|
end
|
|
|
|
def parsed_frame
|
|
Nokogiri::XML(params[:frame]).remove_namespaces!
|
|
end
|
|
end
|