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

14 lines
325 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Api
module V1
class UserProjectSerializer < ActiveModel::Serializer
type :user_projects
attributes :id, :role, :user_id, :project_id, :created_at, :updated_at,
:assigned_by_id
belongs_to :project, serializer: ProjectSerializer
end
end
end