a11yist/app/models/action_text/rich_text.rb

10 lines
154 B
Ruby
Raw Normal View History

2024-09-05 22:54:38 +02:00
# frozen_string_literal: true
module ActionText
class RichText < Record
before_save do
self.body_text = body.to_plain_text
end
end
end