XML builder for generating xml response files, test dummy for epp

This commit is contained in:
Martin Lensment 2014-06-18 18:30:50 +03:00
parent 3bedf17d9a
commit e46cdbd6fc
7 changed files with 31 additions and 22 deletions

View file

@ -1,9 +1,14 @@
class Epp::SessionsController < ApplicationController
def index
render 'hello'
protect_from_forgery with: :null_session
def greeting; end
def proxy
send(params[:command])
end
def create
private
def login
render 'login'
end
end