From 69153b46eee0fec67efa66f9b5f0499730a98829 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Thu, 16 Mar 2023 21:53:23 -0600 Subject: Mejorado código de ProductsController MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/models/product.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'app/models') diff --git a/app/models/product.rb b/app/models/product.rb index 87a7a71..6e76f75 100644 --- a/app/models/product.rb +++ b/app/models/product.rb @@ -21,7 +21,7 @@ class Product < ApplicationRecord has_one_attached :picture - around_create :generate_public_id + # around_create :generate_public_id serialize :categories, Array @@ -29,9 +29,9 @@ class Product < ApplicationRecord public_id end - private + #private - def generate_public_id - self.public_id = SecureRandom.hex(12) - end + #def generate_public_id + # self.public_id = SecureRandom.hex(12) + #end end -- cgit v1.2.3