Sha256: 6e75afc2c7e7b0c08020b8944818cbd2bb23575b290b6a755fc038f61435977c

Contents?: true

Size: 943 Bytes

Versions: 12

Compression:

Stored size: 943 Bytes

Contents

# frozen_string_literal: true

module Decidim
  module Templates
    module AdminLog
      # This class holds the logic to present a `Decidim::Template`
      # 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
      #    TemplatePresenter.new(action_log, view_helpers).present
      class TemplatePresenter < Decidim::Log::BasePresenter
        private

        def diff_fields_mapping
          {
            name: :i18n,
            description: :i18n
          }
        end

        def action_string
          case action
          when "create", "update", "delete", "duplicate"
            "decidim.templates.admin_log.template.#{action}"
          else
            super
          end
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
decidim-templates-0.27.9 app/presenters/decidim/templates/admin_log/template_presenter.rb
decidim-templates-0.27.8 app/presenters/decidim/templates/admin_log/template_presenter.rb
decidim-templates-0.27.7 app/presenters/decidim/templates/admin_log/template_presenter.rb
decidim-templates-0.27.6 app/presenters/decidim/templates/admin_log/template_presenter.rb
decidim-templates-0.27.5 app/presenters/decidim/templates/admin_log/template_presenter.rb
decidim-templates-0.27.4 app/presenters/decidim/templates/admin_log/template_presenter.rb
decidim-templates-0.27.3 app/presenters/decidim/templates/admin_log/template_presenter.rb
decidim-templates-0.27.2 app/presenters/decidim/templates/admin_log/template_presenter.rb
decidim-templates-0.27.1 app/presenters/decidim/templates/admin_log/template_presenter.rb
decidim-templates-0.27.0 app/presenters/decidim/templates/admin_log/template_presenter.rb
decidim-templates-0.27.0.rc2 app/presenters/decidim/templates/admin_log/template_presenter.rb
decidim-templates-0.27.0.rc1 app/presenters/decidim/templates/admin_log/template_presenter.rb