Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8221943
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T14:06:32+00:00 2026-06-07T14:06:32+00:00

I have a Conversation ActiveRecord model which is essentially the following class Conversation <

  • 0

I have a Conversation ActiveRecord model which is essentially the following

class Conversation < ActiveRecord::Base
  has_many :messages, :order => 'created_at ASC'
  belongs_to :latest_message, :class_name => 'Message'
end

I want the latest_message property to always be set to messages.last. I’ve tried the before_save callback but that doesn’t seem to get fired when I add a message like

conversation.messages.create!(
  sender: user,
  body: message_body
)

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T14:06:34+00:00Added an answer on June 7, 2026 at 2:06 pm

    Found the answer while I was writing the question up:

      has_many :messages, :order => 'created_at ASC',
               :after_add => :update_latest_message, :after_remove => :update_latest_message
    
      def update_latest_message(message)
        self.latest_message = self.messages.last
        self.save
      end
    

    ActiveRecord association callbacks let me call a method which updates the message when necessary updated. It would be nice if I didn’t have to call save again…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

hi I have two rails model class Feedback < ActiveRecord::Base has_many :conversations, :dependent =>
I have the following two models: class Message < ActiveRecord::Base belongs_to :to_user, :class_name =>
I have this domain model: class Person < ActiveRecord::Base composed_of :address, mapping: [%w(address_street street),
I have an app which essentially a conversation system (much like reddit). Where a
I have the following conversation scoped backing bean: @Named @ConversationScoped public class TestConversation implements
I have the following Entities @Entity public class Conversation implements Serializable { @Id private
I have the following code which delete all the sms conversation , Uri inboxUri
I have the following situation: An Conversations entity/table which has multiple Tags associated to
I have a templated class Rect with conversion constructor which allows conversion between Rect
I have two models: Conversation and Message . A message belongs_to a conversation, and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.