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

10 lines
224 B
Ruby

# frozen_string_literal: true
module Api
module V1
class SearchBlueprint < Blueprinter::Base
identifier :searchable_id
fields :searchable_type, :granblue_id, :name_en, :name_jp, :element
end
end
end