mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
21 lines
687 B
Ruby
21 lines
687 B
Ruby
# frozen_string_literal: true
|
|
|
|
json.extract! plan, :id, :base_name, :name, :interval, :interval_count, :group_id, :training_credit_nb, :is_rolling, :description, :type,
|
|
:ui_weight, :disabled, :monthly_payment, :plan_category_id
|
|
json.amount plan.amount / 100.00
|
|
json.prices plan.prices, partial: 'api/prices/price', as: :price
|
|
if plan.plan_file
|
|
json.plan_file_attributes do
|
|
json.id plan.plan_file.id
|
|
json.attachment_identifier plan.plan_file.attachment_identifier
|
|
end
|
|
end
|
|
|
|
if plan.respond_to?(:partners)
|
|
json.partners plan.partners do |partner|
|
|
json.first_name partner.first_name
|
|
json.last_name partner.last_name
|
|
json.email partner.email
|
|
end
|
|
end
|