Sha256: bd71fd850ea28dfc16f55839a977832e947efcc9889c40de86e7ba61828d24d3
Contents?: true
Size: 261 Bytes
Versions: 27
Compression:
Stored size: 261 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 class Question include Mongoid::Document field :content embedded_in :survey embeds_many :answers accepts_nested_attributes_for :answers, reject_if: ->(a){ a[:content].blank? }, allow_destroy: true end
Version data entries
27 entries across 27 versions & 2 rubygems