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

11 lines
168 B
Ruby
Raw Normal View History

2018-10-07 17:49:11 +08:00
# frozen_string_literal: true
module Api
module V1
class ProjectSerializer < ActiveModel::Serializer
type :projects
attributes :id
end
end
end