mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
14 lines
230 B
Ruby
14 lines
230 B
Ruby
# lib/extensions/thredded/post.rb
|
|
# frozen_string_literal: true
|
|
|
|
module Extensions
|
|
module Thredded
|
|
module Post
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
acts_as_paranoid
|
|
end
|
|
end
|
|
end
|
|
end |