scinote-web/app/serializers/api/v1/workflow_serializer.rb

13 lines
248 B
Ruby

# frozen_string_literal: true
module Api
module V1
class WorkflowSerializer < ActiveModel::Serializer
type :workflows
attributes :id, :name, :description, :visibility, :team_id
include TimestampableModel
end
end
end