1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/views/api/user_packs/index.json.jbuilder
2023-03-09 13:23:42 +01:00

18 lines
531 B
Ruby

# frozen_string_literal: true
json.array!(@user_packs) do |user_pack|
json.extract! user_pack, :id, :minutes_used, :expires_at
json.prepaid_pack do
json.extract! user_pack.prepaid_pack, :minutes, :priceable_type
json.priceable do
json.extract! user_pack.prepaid_pack.priceable, :name
end
end
if @history
json.history user_pack.prepaid_pack_reservations do |ppr|
json.extract! ppr, :id, :consumed_minutes, :reservation_id
json.reservation_date ppr.reservation.created_at
end
end
end