hensei-api/app/blueprints/api/v1/job_blueprint.rb
2022-12-21 21:07:26 -08:00

23 lines
372 B
Ruby

# frozen_string_literal: true
module Api
module V1
class JobBlueprint < ApiBlueprint
field :name do |job|
{
en: job.name_en,
ja: job.name_jp
}
end
field :proficiency do |job|
[
job.proficiency1,
job.proficiency2
]
end
fields :row, :ml, :order
end
end
end