Class: Decidim::Budgets::Admin::AttachmentCollectionsController
- Inherits:
-
ApplicationController
- Object
- Admin::Components::BaseController
- ApplicationController
- Decidim::Budgets::Admin::AttachmentCollectionsController
show all
- Includes:
- Admin::Concerns::HasAttachmentCollections
- Defined in:
- app/controllers/decidim/budgets/admin/attachment_collections_controller.rb
Overview
Controller that allows managing all the attachment collections for a budget.
Instance Method Summary
collapse
#budget, #maps_enabled?, #projects
Instance Method Details
#after_destroy_path ⇒ Object
11
12
13
|
# File 'app/controllers/decidim/budgets/admin/attachment_collections_controller.rb', line 11
def after_destroy_path
project_attachment_collections_path(project, project.component, current_participatory_space)
end
|
#collection_for ⇒ Object
15
16
17
|
# File 'app/controllers/decidim/budgets/admin/attachment_collections_controller.rb', line 15
def collection_for
project
end
|
#project ⇒ Object
19
20
21
|
# File 'app/controllers/decidim/budgets/admin/attachment_collections_controller.rb', line 19
def project
@project ||= Decidim::Budgets::Project.joins(:budget).where(budget: { component: current_component }).find(params[:project_id])
end
|