Sha256: cc1c7588d44c942556dbfc2cfb9481d5d7e50636dd606e6360fe260b65014f3d
Contents?: true
Size: 358 Bytes
Versions: 39
Compression:
Stored size: 358 Bytes
Contents
# frozen_string_literal: true module Decidim class EditorImageForm < Decidim::Form mimic :editor_image attribute :file attribute :author_id, Integer validates :author_id, presence: true validates :file, presence: true validates :file, passthru: { to: Decidim::EditorImage } alias organization current_organization end end
Version data entries
39 entries across 39 versions & 1 rubygems