Sha256: 64eb56b7bc915ce84588c048833a246f0e6d0cf6294c296189fcb7da032e6ab2
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
class E9Crm::ContactsController < E9Crm::ResourcesController defaults :resource_class => Contact include E9Tags::Controller respond_to :js, :html before_filter :determine_title, :only => :index before_filter :load_user_ids, :only => :index has_scope :search, :by_title, :by_company, :only => :index has_scope :tagged, :only => :index, :type => :array # record attributes templates js skip_before_filter :authenticate_user!, :filter_access_filter, :only => :templates before_filter :build_resource, :only => :templates caches_action :templates protected def load_user_ids @user_ids ||= begin (User.primary.joins(:contact) & end_of_association_chain.scoped).all.map(&:id) end end def determine_title params.delete(:search) if params[:search].blank? @index_title ||= if params[:tagged] && params[:search] e9_t(:index_title_with_search_and_tags, :tagged => params[:tagged].join(' or '), :search => params[:search]) elsif params[:tagged] e9_t(:index_title_with_tags, :tagged => params[:tagged].join(' or ')) elsif params[:search] e9_t(:index_title_with_search, :search => params[:search]) end end def default_ordered_on 'first_name' end def default_ordered_at 'ASC' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
e9_crm-0.1.1 | app/controllers/e9_crm/contacts_controller.rb |