Sha256: f39689d4e645f9ba9c146c2df47514f6eae6a768412cae937f6704e9d014cf47
Contents?: true
Size: 643 Bytes
Versions: 18
Compression:
Stored size: 643 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::Admin::ApplicationController include Concerns::AssemblyAdmin include Decidim::Admin::Concerns::HasAttachments def after_destroy_path assembly_attachments_path(current_assembly.id) end def attached_to current_assembly end def authorization_object @attachment || Attachment end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems