klaay-chatbot/app/models/conversation.rb

12 lines
189 B
Ruby

# frozen_string_literal: true
class Conversation < ApplicationRecord
belongs_to :user
has_many :messages, dependent: :destroy
def pending_reply?
messages.last.promt?
end
end