Sha256: f35bc25d0324774166f08435c222864d2eeaff22590b453dbc715eb72c207fb8
Contents?: true
Size: 877 Bytes
Versions: 2
Compression:
Stored size: 877 Bytes
Contents
module PhcdevworksTutorials class Command::Post < ApplicationRecord # Clean URL Initialize extend FriendlyId # Paper Trail Initialize has_paper_trail :class_name => 'PhcdevworksTutorials::CommandPostVersions' # Image Upload has_one_attached :post_image # Relationships has_and_belongs_to_many :categories, class_name: "Command::Category", :join_table => "phcdevworks_tutorials_categories_posts", :dependent => :destroy has_many :items, class_name: "Command::Item" belongs_to :user, class_name: "PhcdevworksAccounts::User" # Form Fields Validation validates :post_title, presence: true validates :post_description, presence: true # Clean URL Define friendly_id :phcdev_command_post_nice_urls, use: [:slugged, :finders] def phcdev_command_post_nice_urls [:post_title] end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
phcdevworks_tutorials-6.6.1 | app/models/phcdevworks_tutorials/command/post.rb |
phcdevworks_tutorials-6.6.0 | app/models/phcdevworks_tutorials/command/post.rb |