Sha256: 4948c2e099537cf38052486d0bc3b3149a1370bd78bf6ed4f965a69c446c74d9
Contents?: true
Size: 935 Bytes
Versions: 12
Compression:
Stored size: 935 Bytes
Contents
# frozen_string_literal: true module Decidim module Forms module AdminLog # This class holds the logic to present a `Decidim::Forms::Questionnaire` # for the `AdminLog` log. # # Usage should be automatic and you shouldn't need to call this class # directly, but here's an example: # # action_log = Decidim::ActionLog.last # view_helpers # => this comes from the views # QuestionnairePresenter.new(action_log, view_helpers).present class QuestionnairePresenter < Decidim::Log::BasePresenter private def action_string case action when "update" "decidim.forms.admin_log.questionnaire.#{action}" else super end end def i18n_params super.merge( meeting_name: resource_presenter.try(:present) ) end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems