Class: Comee::Core::ClientAddressesController
- Inherits:
-
ApplicationController
- Object
- ActionController::API
- ApplicationController
- Comee::Core::ClientAddressesController
- Includes:
- Common
- Defined in:
- app/controllers/comee/core/client_addresses_controller.rb
Instance Method Summary collapse
Methods included from Common
Methods included from Pagination
#default_per_page, #order_by, #order_direction, #page_no, #paginate, #paginate_offset, #per_page
Methods inherited from ApplicationController
#application_code, #authenticate, #current_application, #current_user, #render_content, #render_error, #skip_bullet
Instance Method Details
#index ⇒ Object
6 7 8 9 10 |
# File 'app/controllers/comee/core/client_addresses_controller.rb', line 6 def index super do ClientAddress.includes(:client, :country).where(client_id: params[:id]) end end |