Sha256: c4605b946538aaf56b7f215f8a4c427fff7802956e19cab2cdc98db9c516968d
Contents?: true
Size: 1.41 KB
Versions: 30
Compression:
Stored size: 1.41 KB
Contents
# frozen_string_literal: true module Decidim module Assemblies module AdminLog # This class holds the logic to present a `Decidim::AssemblyMember` # 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 # AssemblyMemberPresenter.new(action_log, view_helpers).present class AssemblyMemberPresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { full_name: :string, gender: :string, birthday: :date, birthplace: :string, designation_date: :date, designation_mode: :string, position: "Decidim::Assemblies::AdminLog::ValueTypes::MemberPositionPresenter", position_other: :string, weight: :integer, ceased_date: :date } end def i18n_labels_scope "activemodel.attributes.assembly_member" end def action_string case action when "create", "delete", "update" "decidim.admin_log.assembly_member.#{action}" else super end end def has_diff? action == "delete" || super end end end end end
Version data entries
30 entries across 30 versions & 1 rubygems