1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00
fab-manager/app/views/api/credits/user_resource.json.jbuilder

9 lines
229 B
Plaintext
Raw Normal View History

# frozen_string_literal: true
json.array!(@credits) do |credit|
json.partial! 'api/credits/credit', credit: credit
json.used_credits credit.users_credits do |uc|
json.extract! uc, :id, :created_at, :hours_used
end
end