Sha256: 81109565b33c7e271165e8c7405125645bc32b4bb93632e8371a16a1683b12ec

Contents?: true

Size: 546 Bytes

Versions: 92

Compression:

Stored size: 546 Bytes

Contents

module Phcscriptcdnpro
  class Script::Author < ApplicationRecord

    # Clean URL Initialize
    extend FriendlyId

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

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

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

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

  end
end

Version data entries

92 entries across 92 versions & 1 rubygems

Version Path
phcscriptcdnpro-20.0.0 app/models/phcscriptcdnpro/script/author.rb
phcscriptcdnpro-19.1.0 app/models/phcscriptcdnpro/script/author.rb
phcscriptcdnpro-19.0.0 app/models/phcscriptcdnpro/script/author.rb
phcscriptcdnpro-18.1.0 app/models/phcscriptcdnpro/script/author.rb
phcscriptcdnpro-18.0.0 app/models/phcscriptcdnpro/script/author.rb
phcscriptcdnpro-17.1.0 app/models/phcscriptcdnpro/script/author.rb
phcscriptcdnpro-17.0.0 app/models/phcscriptcdnpro/script/author.rb
phcscriptcdnpro-16.1.0 app/models/phcscriptcdnpro/script/author.rb
phcscriptcdnpro-16.0.0 app/models/phcscriptcdnpro/script/author.rb
phcscriptcdnpro-15.2.0 app/models/phcscriptcdnpro/script/author.rb
phcscriptcdnpro-15.1.0 app/models/phcscriptcdnpro/script/author.rb
phcscriptcdnpro-15.0.0 app/models/phcscriptcdnpro/script/author.rb