Class: ClientEngine::ClientsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- ClientEngine::ClientsController
- Defined in:
- app/controllers/client_engine/clients_controller.rb
Instance Method Summary collapse
-
#create ⇒ Object
POST /clients.
-
#destroy ⇒ Object
DELETE /clients/1.
-
#edit ⇒ Object
GET /clients/1/edit.
-
#index ⇒ Object
GET /clients.
-
#new ⇒ Object
GET /clients/new.
-
#show ⇒ Object
GET /clients/1.
-
#update ⇒ Object
PATCH/PUT /clients/1.
Methods inherited from ApplicationController
#get_client_data_from_afip, #sort_column, #sort_direction
Instance Method Details
#create ⇒ Object
POST /clients
26 27 28 29 30 31 32 33 34 35 |
# File 'app/controllers/client_engine/clients_controller.rb', line 26 def create @client = Client.new(client_params) @client.company_id = current_user.company_id if @client.save redirect_to @client, notice: 'Client was successfully created.' else render :new end end |
#destroy ⇒ Object
DELETE /clients/1
47 48 49 50 |
# File 'app/controllers/client_engine/clients_controller.rb', line 47 def destroy @client.destroy redirect_to clients_url, notice: 'Client was successfully destroyed.' end |
#edit ⇒ Object
GET /clients/1/edit
22 23 |
# File 'app/controllers/client_engine/clients_controller.rb', line 22 def edit end |
#index ⇒ Object
GET /clients
8 9 10 |
# File 'app/controllers/client_engine/clients_controller.rb', line 8 def index @clients = current_user.clients.search(params[:search]).paginate(page: params[:page], per_page: 10) end |
#new ⇒ Object
GET /clients/new
17 18 19 |
# File 'app/controllers/client_engine/clients_controller.rb', line 17 def new @client = Client.new end |
#show ⇒ Object
GET /clients/1
13 14 |
# File 'app/controllers/client_engine/clients_controller.rb', line 13 def show end |
#update ⇒ Object
PATCH/PUT /clients/1
38 39 40 41 42 43 44 |
# File 'app/controllers/client_engine/clients_controller.rb', line 38 def update if @client.update(client_params) redirect_to @client, notice: 'Client was successfully updated.' else render :edit end end |