Sha256: f46177ce49a0d1a4a7b78ce35cdd0154f1c2898fbc37a76baa1ba154a11ead3e
Contents?: true
Size: 644 Bytes
Versions: 2
Compression:
Stored size: 644 Bytes
Contents
# frozen_string_literal: true module Decidim module Admin module BulkActionsHelper # Renders an actions dropdown, including an item # for each bulk action. # # Returns a rendered dropdown. def bulk_actions_dropdown render partial: "decidim/admin/bulk_actions/dropdown" end # Renders a form to change the category of selected items # # Returns a rendered form. def bulk_action_recategorize render partial: "decidim/admin/bulk_actions/recategorize" end def proposal_find(id) Decidim::Proposals::Proposal.find(id) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
decidim-admin-0.10.1 | app/helpers/decidim/admin/bulk_actions_helper.rb |
decidim-admin-0.10.0 | app/helpers/decidim/admin/bulk_actions_helper.rb |