Sha256: d4e60ff3ba4f1c27ec9c1646abd4f9f9d93b5ef0769e718b35fc097656c54b41
Contents?: true
Size: 643 Bytes
Versions: 78
Compression:
Stored size: 643 Bytes
Contents
# frozen_string_literal: true module Decidim module Meetings module Admin # Controller that allows managing all the attachment collections for an assembly. # class AttachmentCollectionsController < Admin::ApplicationController include Decidim::Admin::Concerns::HasAttachmentCollections def after_destroy_path meeting_attachment_collections_path(meeting, meeting.component, current_participatory_space) end def collection_for meeting end def meeting @meeting ||= meetings.find(params[:meeting_id]) end end end end end
Version data entries
78 entries across 78 versions & 1 rubygems