Files
sx-fc/app/views/api/shops/show.json.jbuilder
2019-11-19 09:16:55 +06:30

13 lines
253 B
Ruby

if @shop
json.status true
json.id @shop.id
json.logo @shop.logo
json.name @shop.name
json.shop_code @shop.shop_code
json.cloud_url @shop.cloud_url
json.cloud_token @shop.cloud_token
else
json.status false
json.message "Record Not Found"
end