app/models/phcscriptcdn/script/extension.rb in phcscriptcdn-5.1.2 vs app/models/phcscriptcdn/script/extension.rb in phcscriptcdn-6.0.0b

- old
+ new

@@ -1,9 +1,10 @@ module Phcscriptcdn class Script::Extension < ApplicationRecord - # Relationships + # Clean URLS + extend FriendlyId # URLs & Extensions (None Nested) has_many :listings, class_name: 'Phcscriptcdn::Script::Listing', :through => :urls has_many :urls, class_name: 'Phcscriptcdn::Script::Url' @@ -14,8 +15,11 @@ validates :scriptextensiondes, presence: true validates :scriptextension, presence: true + + # Clean URLS Slugs + friendly_id :scriptextensionname, use: :slugged end end \ No newline at end of file