Class: Decidim::Budgets::Admin::AttachmentsController

Inherits:
ApplicationController show all
Includes:
Admin::Concerns::HasAttachments
Defined in:
decidim-budgets/app/controllers/decidim/budgets/admin/attachments_controller.rb

Overview

Controller that allows managing all the attachments for a participatory process.

Instance Method Summary collapse

Methods inherited from ApplicationController

#budget

Methods inherited from Admin::Components::BaseController

#current_component, #current_participatory_space, #parent_path, #permission_class_chain, #permission_scope, #permissions_context, #set_component_breadcrumb_item, #skip_manage_component_permission

Methods included from RegistersPermissions

register_permissions

Methods inherited from Admin::ApplicationController

#permission_class_chain, #permission_scope, #user_has_no_permission_path, #user_not_authorized_path

Methods included from Headers::HttpCachingDisabler

#disable_http_caching

Methods included from NeedsSnippets

#snippets

Methods included from NeedsOrganization

enhance_controller, extended, included

Instance Method Details

#after_destroy_pathObject



12
13
14
# File 'decidim-budgets/app/controllers/decidim/budgets/admin/attachments_controller.rb', line 12

def after_destroy_path
  budget_projects_path(project.budget)
end

#attached_toObject



16
17
18
# File 'decidim-budgets/app/controllers/decidim/budgets/admin/attachments_controller.rb', line 16

def attached_to
  project
end

#projectObject



24
25
26
# File 'decidim-budgets/app/controllers/decidim/budgets/admin/attachments_controller.rb', line 24

def project
  @project ||= projects.find(params[:project_id])
end

#projectsObject



20
21
22
# File 'decidim-budgets/app/controllers/decidim/budgets/admin/attachments_controller.rb', line 20

def projects
  @projects ||= Decidim::Budgets::Project.joins(:budget).where(budget: { component: current_component })
end