class User << ApplicatinRecord
has_rich_text :journal
def receive_sms(sms_body)
journal.update(body: journal.body + sms_body
end
end
this function to append a message to the end of the ActionText is not working... something about how journal is serialized with an ActionContent
class.