diff options
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/product.rb | 10 |
1 files changed, 5 insertions, 5 deletions
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 |