Class: Decidim::Conferences::AdminLog::ValueTypes::RolePresenter

Inherits:
Log::ValueTypes::DefaultPresenter show all
Defined in:
decidim-conferences/app/presenters/decidim/conferences/admin_log/value_types/role_presenter.rb

Overview

This class presents the given value as a user role. Check the ‘DefaultPresenter` for more info on how value presenters work.

Instance Method Summary collapse

Methods inherited from Log::ValueTypes::DefaultPresenter

#initialize

Constructor Details

This class inherits a constructor from Decidim::Log::ValueTypes::DefaultPresenter

Instance Method Details

#presentObject

Public: Presents the value as a user role.

Returns an HTML-safe String.



14
15
16
17
18
# File 'decidim-conferences/app/presenters/decidim/conferences/admin_log/value_types/role_presenter.rb', line 14

def present
  return if value.blank?

  h.t(value, scope: "decidim.admin.models.conference_user_role.roles", default: value)
end