10 lines
169 B
10 lines
169 B
6 years ago
|
module Publicable
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
alias_attribute :public, :is_public
|
||
|
enum public: { publiced: 1, hidden: 0 }
|
||
|
end
|
||
|
|
||
|
end
|