Class: Tramway::Site::PersonDecorator
- Inherits:
-
Core::ApplicationDecorator
- Object
- Core::ApplicationDecorator
- Tramway::Site::PersonDecorator
- Defined in:
- app/decorators/tramway/site/person_decorator.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.show_attributes ⇒ Object
5 6 7 |
# File 'app/decorators/tramway/site/person_decorator.rb', line 5 def show_attributes %i[full_name short_bio bio photo] end |
Instance Method Details
#bio ⇒ Object
16 17 18 |
# File 'app/decorators/tramway/site/person_decorator.rb', line 16 def bio raw object.bio end |
#full_name ⇒ Object
12 13 14 |
# File 'app/decorators/tramway/site/person_decorator.rb', line 12 def full_name object.names.join ' ' end |
#photo ⇒ Object
20 21 22 |
# File 'app/decorators/tramway/site/person_decorator.rb', line 20 def photo image_view object.photo end |