Sha256: cf84211b0ef248dccd9a575a8fb4e22124752da43f568f9cd0d40a917c566744
Contents?: true
Size: 656 Bytes
Versions: 25
Compression:
Stored size: 656 Bytes
Contents
# frozen_string_literal: true module Decidim module Accountability module Admin # This class holds a Form to create/update timeline_entries from Decidim's admin panel. class TimelineEntryForm < Decidim::Form include TranslatableAttributes include TranslationsHelper attribute :decidim_accountability_result_id, Integer attribute :entry_date, Decidim::Attributes::LocalizedDate translatable_attribute :title, String translatable_attribute :description, String validates :entry_date, presence: true validates :title, translatable_presence: true end end end end
Version data entries
25 entries across 25 versions & 1 rubygems