Sha256: 6eef38bab987906486216312491cddf2587532647d34158de0b64be2ece42298
Contents?: true
Size: 1.4 KB
Versions: 35
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 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 # 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 has_diff? action == "delete" || super end end end end end
Version data entries
35 entries across 35 versions & 1 rubygems