class LineItem
def stock_status
8, true
end
end
Template
json.stock, json.required_stock = line_item.stock_status
Response
stock=: 6,
required_stock=: true
Want the response to be
stock: 6,
required_stock: true
class LineItem
def stock_status
8, true
end
end
Template
json.stock, json.required_stock = line_item.stock_status
Response
stock=: 6,
required_stock=: true
Want the response to be
stock: 6,
required_stock: true
try update template to
json.(line_item.stock_status, :stock, :required_stock)