Sha256: 57f50d73ba65ace4c0352d7a7135092c7400d2514ca2ca47cf8f65e430ddbee5
Contents?: true
Size: 817 Bytes
Versions: 25
Compression:
Stored size: 817 Bytes
Contents
# frozen_string_literal: true module Decidim module Accountability class TimelineEntryType < Decidim::Api::Types::BaseObject description "A Timeline Entry" field :id, GraphQL::Types::ID, "The internal ID for this timeline entry", null: false field :entry_date, Decidim::Core::DateType, "The entry date for this timeline entry", null: true field :description, Decidim::Core::TranslatedFieldType, "The description for this timeline entry", null: true field :created_at, Decidim::Core::DateTimeType, "When this timeline entry was created", null: true field :updated_at, Decidim::Core::DateTimeType, "When this timeline entry was updated", null: true field :result, Decidim::Accountability::ResultType, "The result for this timeline entry", null: true end end end
Version data entries
25 entries across 25 versions & 1 rubygems