mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
9 lines
197 B
Ruby
9 lines
197 B
Ruby
class Epp::ErrorsController < ApplicationController
|
|
include Epp::Common
|
|
layout false
|
|
|
|
def error
|
|
epp_errors << { code: params[:code], msg: params[:msg] }
|
|
render '/epp/error'
|
|
end
|
|
end
|