summaryrefslogtreecommitdiff
path: root/app/controllers/api/carts_controller.rb
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-04-06 14:22:22 -0600
committerHombreLaser <sebastian-440@live.com>2023-04-06 14:22:22 -0600
commitfc191f53503629087fd453e626ec2a4c58e0a21b (patch)
treeaa6fa09f35b62cc302245832e0995a274de32a0a /app/controllers/api/carts_controller.rb
parentb7455b581022059a87633864c2ac2751b035e1e1 (diff)
AƱadidos validadores
Diffstat (limited to 'app/controllers/api/carts_controller.rb')
-rw-r--r--app/controllers/api/carts_controller.rb19
1 files changed, 8 insertions, 11 deletions
diff --git a/app/controllers/api/carts_controller.rb b/app/controllers/api/carts_controller.rb
index c33f76e..0e14c17 100644
--- a/app/controllers/api/carts_controller.rb
+++ b/app/controllers/api/carts_controller.rb
@@ -10,24 +10,21 @@ module Api
end
def create
- product_cart = @cart.product_carts.new(product_id: permitted_params[:product_id],
- quantity: permitted_params[:quantity])
+ product_cart = @cart.add_product(permitted_params[:product_id], permitted_params[:quantity])
- if product_cart.save
+ if product_cart.errors.empty?
render json: serialized_object.serializable_hash, status: :ok
else
- render json: { errors: product_cart.as_json }, status: :unprocessable_entity
+ render json: { errors: product_cart.errors.as_json }, status: :unprocessable_entity
end
end
def destroy
- product = @cart.product_carts.products.find_by(public_id: params[:id])
-
- render status: :not_found and return if product.nil?
-
- @cart.product_carts.find_by(cart_id: @cart.id, product_id: product.id).destroy
-
- render status: :no_content
+ if @cart.delete_product(product.id)
+ render status: :no_content
+ else
+ render status: :not_found
+ end
end
private