forked from jasder/forgeplus
8 lines
132 B
Ruby
8 lines
132 B
Ruby
|
module Publicable
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
scope :visible, -> { where(is_public: true) }
|
||
|
end
|
||
|
end
|