ozfortress/citadel

View on GitHub
app/presenters/user/title_presenter.rb

Summary

Maintainability
A
0 mins
Test Coverage
class User
  class TitlePresenter < BasePresenter
    presents :title

    delegate :id, to: :title
    delegate :name, to: :title
    delegate :badge, to: :title

    def icon
      image_tag badge.thumb.url, class: 'pull-left thumbnail', title: name,
                                 data: { toggle: 'tooltip', placement: 'bottom' }
    end
  end
end