mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
657723bc22
index and show endpoints
22 lines
411 B
Ruby
22 lines
411 B
Ruby
# frozen_string_literal: true
|
|
|
|
# authorized 3rd party softwares can fetch data about plans through the OpenAPI
|
|
class OpenAPI::V1::PlansController < OpenAPI::V1::BaseController
|
|
extend OpenAPI::ApiDoc
|
|
expose_doc
|
|
|
|
before_action :set_plan, only: %i[show]
|
|
|
|
def index
|
|
@plans = Plan.order(:created_at)
|
|
end
|
|
|
|
def show; end
|
|
|
|
private
|
|
|
|
def set_plan
|
|
@plan = Plan.friendly.find(params[:id])
|
|
end
|
|
end
|