Sha256: e3069749c4fef4dcfed1c0364798d24ad32b62ef294face97adab11ec4cd3ea1

Contents?: true

Size: 714 Bytes

Versions: 4

Compression:

Stored size: 714 Bytes

Contents

module Phcscriptcdnpro
	class Script::Url < ApplicationRecord

		# Paper Trail Initialize
		has_paper_trail :class_name => 'Phcscriptcdnpro::UrlVersions'

		# Relationships
		belongs_to :listing, class_name: 'Phcscriptcdnpro::Script::Listing'
		belongs_to :extension, class_name: 'Phcscriptcdnpro::Script::Extension'
		belongs_to :version, class_name: 'Phcscriptcdnpro::Script::Version', optional: true

		# Form Fields Validation
		validates :script_url,
		presence: true,
		format: { with: URI::regexp(%w(http https)), message: "Please follow this URL format http or https://www.**********.com" }

		validates :script_url_release,
		presence: true

		validates :script_url_cdn_update,
		presence: true

	end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
phcscriptcdnpro-79.0.3 app/models/phcscriptcdnpro/script/url.rb
phcscriptcdnpro-79.0.2 app/models/phcscriptcdnpro/script/url.rb
phcscriptcdnpro-79.0.1 app/models/phcscriptcdnpro/script/url.rb
phcscriptcdnpro-79.0.0 app/models/phcscriptcdnpro/script/url.rb