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