Sha256: df17763fbf38877cf7023397273f68e023f7a23707b26fa23fcd8433fc73bf76
Contents?: true
Size: 693 Bytes
Versions: 5
Compression:
Stored size: 693 Bytes
Contents
module Phcpress class Article::Post < ApplicationRecord # Clean URL Initialize extend FriendlyId # Paper Trail Initialize has_paper_trail :class_name => 'Phcpress::PostVersions' # Image Upload has_one_attached :post_image # Relationships has_and_belongs_to_many :categories, class_name: 'Phcpress::Article::Category', :join_table => 'categories_posts' belongs_to :user, class_name: 'PhcdevworksAccountsDevise::User' # Form Fields Validation validates :post_title, presence: true validates :post_text, presence: true # Clean URL Define friendly_id :phcpress_post_slug, use: [:slugged, :finders] def phcpress_post_slug [:post_title] end end end
Version data entries
5 entries across 5 versions & 1 rubygems