Sha256: e6615495234180c833bc47d3c55c2a2ffd6246c72fef9260634613e7915b5e2e
Contents?: true
Size: 555 Bytes
Versions: 31
Compression:
Stored size: 555 Bytes
Contents
# frozen_string_literal: true require 'active_support/concern' module BaseEditingBootstrap module IsValidated extend ActiveSupport::Concern included do ## # Helpers per settare su un record quando abbiamo eseguito o meno la validazione e quindi # utilizzare questa informazione nella renderizzazione dello stato della form. attr_reader :is_validated alias_method :validated?, :is_validated after_initialize -> { @is_validated = false } after_validation -> { @is_validated = true } end end end
Version data entries
31 entries across 31 versions & 1 rubygems