scinote-web/app/serializers/api/v1/project_serializer.rb
2018-10-07 11:54:11 +02:00

10 lines
168 B
Ruby

# frozen_string_literal: true
module Api
module V1
class ProjectSerializer < ActiveModel::Serializer
type :projects
attributes :id
end
end
end