1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-04 15:24:23 +01:00
fab-manager/app/views/api/user_packs/index.json.jbuilder

9 lines
209 B
Plaintext
Raw Normal View History

2021-06-29 11:14:36 +02:00
# frozen_string_literal: true
json.array!(@user_packs) do |user_pack|
json.extract! user_pack, :minutes_used, :expires_at
json.prepaid_pack do
2021-06-29 15:59:57 +02:00
json.extract! user_pack.prepaid_pack, :minutes
2021-06-29 11:14:36 +02:00
end
end