1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/views/api/credits/user_resource.json.jbuilder

9 lines
229 B
Ruby

# 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