Sha256: 3762144b21d75b0a19f36e8480b6cce1f1af863dbc7702ed52775bc0e77af2c8
Contents?: true
Size: 909 Bytes
Versions: 15
Compression:
Stored size: 909 Bytes
Contents
# frozen_string_literal: true module Decidim module Blogs module AdminLog # This class holds the logic to present a `Decidim::Blogs::Post` # 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 # PostPresenter.new(action_log, view_helpers).present class PostPresenter < Decidim::Log::BasePresenter private def action_string case action when "create", "delete", "update" "decidim.blogs.admin_log.post.#{action}" else super end end def diff_fields_mapping { title: :i18n, body: :i18n } end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems