Files
sx-fc/app/views/api/verifications/new.json.jbuilder
Myat Zin Wai Maw 4bffd640a0 verify
2020-02-27 14:45:15 +06:30

13 lines
227 B
Ruby

if @result
json.status true
json.sent_pin true
json.customer_id @cus.id
elsif @cus
json.status true
json.sent_pin false
json.customer_id @cus.id
else
json.status false
json.message "Phone number invalid"
end