diff --git a/lib/customer_info_form.rb b/lib/customer_info_form.rb index 259ca535d2797e9c878c6d633b277af56b5da257..e89ef875ed9756d5a6e4d909ea59f76b584af96d 100644 --- a/lib/customer_info_form.rb +++ b/lib/customer_info_form.rb @@ -9,21 +9,6 @@ class CustomerInfoForm @customer_repo = customer_repo end - def picker_form - form = Blather::Stanza::X.new(:form) - form.title = "Pick Customer" - form.instructions = "Tell us something about the customer and we'll try " \ - "to get more information for you" - - form.fields = { - var: "q", type: "text-single", - label: "Something about the customer", - description: "Supported things include: customer ID, JID, phone number" - } - - form - end - def find_customer(response) parse_something(response.form.field("q").value) end