Sha256: ecce08e66a40241756c17a546c18e625e42baa20499379031549ad7ff4cb8ccc
Contents?: true
Size: 621 Bytes
Versions: 56
Compression:
Stored size: 621 Bytes
Contents
# frozen_string_literal: true module Decidim module Budgets module Admin # Controller that allows managing all the attachments for a participatory # process. # class AttachmentsController < Admin::ApplicationController include Decidim::Admin::Concerns::HasAttachments def after_destroy_path projects_path end def attached_to project end def project @project ||= projects.find(params[:project_id]) end def authorization_object project.feature end end end end end
Version data entries
56 entries across 56 versions & 2 rubygems