Sha256: 0c0373c24a88d163d9043ea21c707be4eacf0de9717ff17efa0eb1f305697247

Contents?: true

Size: 1.16 KB

Versions: 13

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

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

        def diff_fields_mapping
          {
            title: :i18n,
            description: :i18n,
            price: :integer
          }
        end

        def i18n_labels_scope
          "activemodel.attributes.conferences.registration_type"
        end

        def action_string
          case action
          when "create", "delete", "update"
            "decidim.admin_log.conferences.registration_type.#{action}"
          else
            super
          end
        end

        def diff_actions
          super + %w(delete)
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
decidim-conferences-0.29.1 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb
decidim-conferences-0.28.4 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb
decidim-conferences-0.29.0 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb
decidim-conferences-0.28.3 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb
decidim-conferences-0.29.0.rc4 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb
decidim-conferences-0.29.0.rc3 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb
decidim-conferences-0.29.0.rc2 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb
decidim-conferences-0.29.0.rc1 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb
decidim-conferences-0.28.2 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb
decidim-conferences-0.28.1 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb
decidim-conferences-0.28.0 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb
decidim-conferences-0.28.0.rc5 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb
decidim-conferences-0.28.0.rc4 app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb