locomotivecms/engine

View on GitHub
app/helpers/locomotive/accounts_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Locomotive
  module AccountsHelper

    def options_for_account
      current_site.accounts.collect { |a| ["#{a.name} <#{a.email}>", a.id.to_s] }
    end

  end
end