diff --git a/app/serializers/api/v1/project_serializer.rb b/app/serializers/api/v1/project_serializer.rb index 3a43a4ce8..8e82a49e6 100644 --- a/app/serializers/api/v1/project_serializer.rb +++ b/app/serializers/api/v1/project_serializer.rb @@ -4,8 +4,11 @@ module Api module V1 class ProjectSerializer < ActiveModel::Serializer type :projects - attributes :id, :name, :visibility, :due_date, - :archived + attributes :name, :visibility, :start_date, :archived + + def start_date + object.created_at + end end end end