9 lines
154 B
Ruby
9 lines
154 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ActionText
|
|
class RichText < Record
|
|
before_save do
|
|
self.body_text = body.to_plain_text
|
|
end
|
|
end
|
|
end
|