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

13 lines
248 B
Ruby
Raw Normal View History

2020-08-20 21:49:48 +08:00
# frozen_string_literal: true
module Api
module V1
class WorkflowSerializer < ActiveModel::Serializer
type :workflows
attributes :id, :name, :description, :visibility, :team_id
include TimestampableModel
2020-08-20 21:49:48 +08:00
end
end
end