Sha256: 9850f810c7ad3ced9f8fb6d5b24a72562e83d738f09363e4b2d97500ce7a3e77
Contents?: true
Size: 707 Bytes
Versions: 18
Compression:
Stored size: 707 Bytes
Contents
# frozen_string_literal: true module Decidim module Assemblies module Admin # Controller that allows managing all the attachments for a participatory # assembly. # class AssemblyAttachmentsController < Decidim::Assemblies::Admin::ApplicationController include Concerns::AssemblyAdmin include Decidim::Admin::Concerns::HasAttachments include Decidim::Admin::Concerns::HasTabbedMenu def after_destroy_path assembly_attachments_path(current_assembly) end def attached_to current_assembly end private def tab_menu_name = :assemblies_admin_attachments_menu end end end end
Version data entries
18 entries across 18 versions & 1 rubygems