engine/app/presenters/locomotive/account_presenter.rb

11 lines
192 B
Ruby
Raw Permalink Normal View History

module Locomotive
class AccountPresenter < BasePresenter
delegate :name, :email, :locale, :to => :source
def included_methods
super + %w(name email locale)
end
end
end