Basic contact delete command implementation

This commit is contained in:
Andres Keskküla 2014-07-28 12:00:55 +03:00
parent 1645b3e96f
commit 65bb5166cc
7 changed files with 65 additions and 1 deletions

View file

@ -11,4 +11,8 @@ class Epp::CommandsController < ApplicationController
def check
send("check_#{OBJECT_TYPES[params_hash['epp']['xmlns:ns2']]}")
end
def delete
send("delete_#{OBJECT_TYPES[params_hash['epp']['xmlns:ns2']]}")
end
end