No more "choose next"

Stephen Paul Weber created

Instead, adhoc bot will show the options for actions to take

Change summary

lib/registration.rb       | 4 ++--
test/test_registration.rb | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)

Detailed changes

lib/registration.rb 🔗

@@ -261,7 +261,7 @@ class Registration
 					reply.to.stripped.to_s.gsub("\\", "%5C"),
 					@customer.customer_id
 				)
-				oob.desc = "Add credit card, then return here and choose next"
+				oob.desc = "Add credit card, then return here to continue"
 				oob
 			end
 
@@ -309,7 +309,7 @@ class Registration
 					"If you were trying a prepaid card, you may wish to use "\
 					"Privacy.com instead, as they do support international " \
 					"transactions.\n\n " \
-					"You may add another card and then choose next"
+					"You may add another card and then return here"
 
 				def decline_oob(reply)
 					oob = OOB.find_or_create(reply.command)

test/test_registration.rb 🔗

@@ -249,7 +249,7 @@ class RegistrationTest < Minitest::Test
 			def test_reply
 				assert_equal [:execute, :next], @credit_card.reply.allowed_actions
 				assert_equal(
-					"Add credit card, then return here and choose next: " \
+					"Add credit card, then return here to continue: " \
 					"http://creditcard.example.com",
 					@credit_card.reply.note.content
 				)