hensei-api/app/controllers/api/v1/guidebooks_controller.rb

11 lines
214 B
Ruby

# frozen_string_literal: true
module Api
module V1
class GuidebooksController < Api::V1::ApiController
def all
render json: GuidebookBlueprint.render(Guidebook.all)
end
end
end
end