Sha256: 3ae29de63a4a204762477f157bb12819fe92607d8f1985692a910c1f5e2bcb07
Contents?: true
Size: 778 Bytes
Versions: 50
Compression:
Stored size: 778 Bytes
Contents
# frozen_string_literal: true module Decidim module Accountability module Admin # Controller that allows managing all the attachment collections for an # accountability result. # class AttachmentCollectionsController < Admin::ApplicationController include Decidim::Admin::Concerns::HasAttachmentCollections def after_destroy_path result_attachment_collections_path(result, result.component, current_participatory_space) end def collection_for result end def result @result ||= results.find(params[:result_id]) end private def results @results ||= Result.where(component: current_component) end end end end end
Version data entries
50 entries across 50 versions & 1 rubygems