8 lines
123 B
Ruby
8 lines
123 B
Ruby
|
|
module ActionText
|
||
|
|
class RichText < Record
|
||
|
|
before_save do
|
||
|
|
self.body_text = body.to_plain_text
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|