mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-30 19:52:20 +01:00
8 lines
196 B
Ruby
8 lines
196 B
Ruby
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
|