Sha256: 8c576ea298a2fb1165b62e184a54740cc4fe5273b364e52896ccce56b970741d
Contents?: true
Size: 477 Bytes
Versions: 88
Compression:
Stored size: 477 Bytes
Contents
# frozen_string_literal: true require "active_support/concern" module Decidim # A concern with the components needed when you want a model to be able to create # links from it to another resource. module HasAttachmentCollections extend ActiveSupport::Concern included do has_many :attachment_collections, class_name: "Decidim::AttachmentCollection", dependent: :destroy, as: :collection_for end end end
Version data entries
88 entries across 88 versions & 1 rubygems