Sha256: 598c4638fa8743e3609b1096d5b00e7ac79351b1fb846573964a9770c8911626
Contents?: true
Size: 1.4 KB
Versions: 13
Compression:
Stored size: 1.4 KB
Contents
# frozen_string_literal: true module Decidim module Assemblies module AdminLog # This class holds the logic to present a `Decidim::AssemblyUserRole` # 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 # AssemblyUserRolePresenter.new(action_log, view_helpers).present class AssemblyUserRolePresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { role: "Decidim::Assemblies::AdminLog::ValueTypes::RolePresenter" } end def i18n_labels_scope "activemodel.attributes.assembly_user_role" end def action_string case action when "create", "delete", "update" "decidim.admin_log.assembly_user_role.#{action}" else super end end def changeset return super unless action.to_s == "delete" Decidim::Log::DiffChangesetCalculator.new( { role: [action_log.version.object["role"], ""] }, diff_fields_mapping, i18n_labels_scope ).changeset end def diff_actions super + %w(delete) end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems