Sha256: b9118ba6cd2f9a1f40758abf8d3e647f944135e73e44cc21b2a6d61c951b3111

Contents?: true

Size: 671 Bytes

Versions: 54

Compression:

Stored size: 671 Bytes

Contents

module Phcscriptcdn
  class Script::Author < ApplicationRecord

    # Clean URL Initialize
    extend FriendlyId

    # Add Paper Trail
    has_paper_trail :class_name => 'Phcscriptcdn::AuthorVersions'

    # Relationships
    has_many :listings, class_name: 'Phcscriptcdn::Script::Listing'

    # Validation for Form Fields
    validates :authorfirstname,
      presence: true

    validates :authorlastname,
      presence: true

    # Clean URL Define
    friendly_id :phcscriptcdn_author_slug, use: [:slugged, :finders]

    # Define for Multiple Records
    def phcscriptcdn_author_slug
      [
        [:authorfirstname, :authorlastname]
      ]
    end

  end
end

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
phcscriptcdn-48.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-47.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-44.1.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-45.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-44.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-43.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-42.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-41.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-40.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-38.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-37.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-36.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-35.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-34.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-33.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-32.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-31.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-30.0.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-29.2.0 app/models/phcscriptcdn/script/author.rb
phcscriptcdn-29.1.0 app/models/phcscriptcdn/script/author.rb