Class: Decidim::Conferences::AdminLog::ValueTypes::RolePresenter
- Inherits:
 - 
      Log::ValueTypes::DefaultPresenter
      
        
- Object
 - Log::ValueTypes::DefaultPresenter
 - Decidim::Conferences::AdminLog::ValueTypes::RolePresenter
 
 
- Defined in:
 - 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
- 
  
    
      #present  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Public: Presents the value as a user role.
 
Instance Method Details
#present ⇒ Object
Public: Presents the value as a user role.
Returns an HTML-safe String.
      14 15 16 17 18  | 
    
      # File '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  |