mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
12 lines
321 B
Ruby
12 lines
321 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
|
|
end
|