summaryrefslogtreecommitdiff
path: root/app/controllers/api
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-03-18 12:15:43 -0600
committerHombreLaser <sebastian-440@live.com>2023-03-18 12:15:43 -0600
commit3e106dc7f5fbd6961c67f41aea66033c27b5142f (patch)
tree1cc3c2046a506e8d0bba7cfa300c8d0734cce6ae /app/controllers/api
parent717fa996842012a8666bcff985218c2abddd9991 (diff)
Añade spec de products_controller#show
Diffstat (limited to 'app/controllers/api')
-rw-r--r--app/controllers/api/products_controller.rb16
1 files changed, 9 insertions, 7 deletions
diff --git a/app/controllers/api/products_controller.rb b/app/controllers/api/products_controller.rb
index ec82af6..0c3a30b 100644
--- a/app/controllers/api/products_controller.rb
+++ b/app/controllers/api/products_controller.rb
@@ -4,9 +4,7 @@ module Api
# ProductsController
class ProductsController < MasterController
def show
- @product = Product.find_by(public_id: params[:id])
-
- render json: not_found_error_message, status: :not_found and return if @product.nil?
+ render json: not_found_error_message, status: :not_found and return if product.nil?
render json: serialized_object.serializable_hash, status: :ok
end
@@ -48,11 +46,15 @@ module Api
private
+ def product
+ @product ||= Product.joins(:company)
+ .select('products.*', 'companies.name as company_name',
+ 'companies.short_name as company_short_name')
+ .find_by(public_id: params[:id])
+ end
+
def serialized_object
- Serializers::ProductSerializer.new(
- @product.joins(:company)
- .select('products.*', 'companies.name as company_name','companies.short_name as company_short_name')
- )
+ Serializers::ProductSerializer.new(product)
end
def serialized_collection