mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
20 lines
424 B
Ruby
20 lines
424 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class WorkflowsController < BaseController
|
|
before_action only: :show do
|
|
load_workflow(:id)
|
|
end
|
|
|
|
def index
|
|
workflows = MyModuleStatusFlow.all
|
|
render jsonapi: workflows, each_serializer: WorkflowSerializer
|
|
end
|
|
|
|
def show
|
|
render jsonapi: @workflow, serializer: WorkflowSerializer
|
|
end
|
|
end
|
|
end
|
|
end
|