mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-07 01:54:16 +01:00
8 lines
196 B
Plaintext
8 lines
196 B
Plaintext
|
json.array!(@wallet_transactions) do |t|
|
||
|
json.extract! t, :id, :transaction_type, :created_at, :amount
|
||
|
json.user do
|
||
|
json.id t.user.id
|
||
|
json.full_name t.user.profile.full_name
|
||
|
end
|
||
|
end
|