Sha256: e54cbca3250f211255afaef8a01dd7b384ca2f0ae24a0d4eea9e3a07e911c514
Contents?: true
Size: 900 Bytes
Versions: 15
Compression:
Stored size: 900 Bytes
Contents
# frozen_string_literal: true module Decidim module AdminLog # This class holds the logic to present a `Decidim::Category` # for the `AdminLog` log. # # Usage should be automatic and you should not need to call this class # directly, but here is an example: # # action_log = Decidim::ActionLog.last # view_helpers # => this comes from the views # CategoryPresenter.new(action_log, view_helpers).present class CategoryPresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { name: :i18n, description: :i18n, weight: :integer, parent_id: :integer } end def action_string case action when "create", "delete", "update" "decidim.admin_log.category.#{action}" else super end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems