hensei-api/app/blueprints/api/v1/collection_summon_blueprint.rb

16 lines
No EOL
354 B
Ruby

module Api
module V1
class CollectionSummonBlueprint < ApiBlueprint
identifier :id
fields :uncap_level, :transcendence_step,
:created_at, :updated_at
association :summon, blueprint: SummonBlueprint
view :full do
association :summon, blueprint: SummonBlueprint, view: :full
end
end
end
end