mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
14 lines
356 B
Ruby
14 lines
356 B
Ruby
json.array!(@wallet_transactions) do |t|
|
|
json.extract! t, :id, :transaction_type, :created_at, :amount, :transactable_type
|
|
json.user do
|
|
json.id t.invoicing_profile.user_id
|
|
json.full_name t.invoicing_profile.full_name
|
|
end
|
|
if t.invoice
|
|
json.invoice do
|
|
json.id t.invoice.id
|
|
json.reference t.invoice.reference
|
|
end
|
|
end
|
|
end
|