Last active
February 3, 2020 23:20
-
-
Save staycreativedesign/a7374c6c9929782b358bcd8e73f1c7de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Page < ApplicationRecord | |
extend FriendlyId | |
friendly_id :meta_slug, use: :slugged | |
has_one_attached :banner | |
def related_pages | |
pages_this_relates_to + pages_related_to_this | |
end | |
has_and_belongs_to_many :pages_this_relates_to, | |
class_name: "Page", | |
join_table: "related_pages", | |
association_foreign_key: "other_page_id" | |
has_and_belongs_to_many :pages_related_to_this, | |
class_name: "Page", | |
join_table: "related_pages", | |
foreign_key: "other_page_id" | |
has_and_belongs_to_many :related_pages, | |
class_name: "Page", | |
join_table: "related_pages", | |
association_foreign_key: "other_page_id" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment