mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-11 01:50:18 +08:00
14 lines
265 B
Ruby
14 lines
265 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class ProjectSerializer < ActiveModel::Serializer
|
|
type :projects
|
|
attributes :name, :visibility, :start_date, :archived
|
|
|
|
def start_date
|
|
object.created_at
|
|
end
|
|
end
|
|
end
|
|
end
|