Class: Comable::Admin::CustomersController

Inherits:
ApplicationController show all
Includes:
PermittedAttributes
Defined in:
app/controllers/comable/admin/customers_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#current_ability

Instance Method Details

#indexObject



10
11
12
13
# File 'app/controllers/comable/admin/customers_controller.rb', line 10

def index
  @q = Comable::Customer.ransack(params[:q])
  @customers = @q.result.page(params[:page]).accessible_by(current_ability)
end

#updateObject



15
16
17
18
19
20
21
22
# File 'app/controllers/comable/admin/customers_controller.rb', line 15

def update
  if @customer.update_attributes(customer_params)
    redirect_to comable.admin_customer_path(@customer), notice: Comable.t('successful')
  else
    flash.now[:alert] = Comable.t('failure')
    render :edit
  end
end