add abstract PageGrouper class for later

This commit is contained in:
Andrew Brown 2020-08-28 19:33:50 -07:00
parent f02cd0e0e4
commit af3e9f6964

View File

@ -0,0 +1,7 @@
class PageGrouper < ApplicationRecord
self.abstract_class = true
include HasContentLinking
belongs_to :user, optional: true
end