Sha256: d439e886bab049bcedee96a70998b5d367d91230bdb5700c921834e26327821a

Contents?: true

Size: 537 Bytes

Versions: 47

Compression:

Stored size: 537 Bytes

Contents

module Cmor
  module Testimonials
    class Testimonial < ApplicationRecord
      include ActsAsPublished::ActiveRecord
      include Markup::Rails::ActiveRecord

      has_one_attached :image
      belongs_to :category

      acts_as_list scope: :category
      acts_as_published
      acts_as_markup :body, Cmor::Core::Configuration.default_markup_options

      def human
        if role.present?
          "#{fullname} (#{role}) - #{company}"
        else
          "#{fullname} - #{company}"
        end
      end
    end
  end
end

Version data entries

47 entries across 47 versions & 1 rubygems

Version Path
cmor_testimonials-0.0.60.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.59.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.58.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.57.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.56.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.55.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.54.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.53.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.52.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.51.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.50.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.49.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.48.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.45.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.44.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.43.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.42.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.41.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.40.pre app/models/cmor/testimonials/testimonial.rb
cmor_testimonials-0.0.39.pre app/models/cmor/testimonials/testimonial.rb